diff options
author | Yoni Bettan <ybettan@redhat.com> | 2017-09-05 11:46:34 +0300 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2017-09-08 16:15:17 +0300 |
commit | 0b4a775188cbe411d9ce7073ea1a24b72848327e (patch) | |
tree | d2b28bbe5a3e853ef94a1561d566d2e95e5c8a7c /hw | |
parent | 66a4a0318e6b9539505491e4576fb93a708095d8 (diff) | |
download | qemu-0b4a775188cbe411d9ce7073ea1a24b72848327e.zip qemu-0b4a775188cbe411d9ce7073ea1a24b72848327e.tar.gz qemu-0b4a775188cbe411d9ce7073ea1a24b72848327e.tar.bz2 |
acpi/vmgenid: change device category to misc
Moved vmgenid from uncategorized to misc category in QEMU help menu
Signed-off-by: Yoni Bettan <ybettan@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'hw')
-rw-r--r-- | hw/acpi/vmgenid.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/acpi/vmgenid.c b/hw/acpi/vmgenid.c index a32b847..876723a 100644 --- a/hw/acpi/vmgenid.c +++ b/hw/acpi/vmgenid.c @@ -240,6 +240,7 @@ static void vmgenid_device_class_init(ObjectClass *klass, void *data) dc->realize = vmgenid_realize; dc->hotpluggable = false; dc->props = vmgenid_properties; + set_bit(DEVICE_CATEGORY_MISC, dc->categories); object_class_property_add_str(klass, VMGENID_GUID, NULL, vmgenid_set_guid, NULL); |