[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 03/13] vmmouse: put it into the 'input' category
From: |
Gan Qixin |
Subject: |
[PATCH 03/13] vmmouse: put it into the 'input' category |
Date: |
Mon, 16 Nov 2020 02:48:53 +0800 |
The category of the vmmouse device is not set, put it into the 'input'
category.
Signed-off-by: Gan Qixin <ganqixin@huawei.com>
---
Cc: Michael S. Tsirkin <mst@redhat.com>
---
hw/i386/vmmouse.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/hw/i386/vmmouse.c b/hw/i386/vmmouse.c
index a3556438f0..df4798f502 100644
--- a/hw/i386/vmmouse.c
+++ b/hw/i386/vmmouse.c
@@ -308,6 +308,7 @@ static void vmmouse_class_initfn(ObjectClass *klass, void
*data)
dc->reset = vmmouse_reset;
dc->vmsd = &vmstate_vmmouse;
device_class_set_props(dc, vmmouse_properties);
+ set_bit(DEVICE_CATEGORY_INPUT, dc->categories);
}
static const TypeInfo vmmouse_info = {
--
2.23.0
- [PATCH 00/13] Categorize some uncategorized devices, Gan Qixin, 2020/11/16
- [PATCH 01/13] pc-dimm: put it into the 'storage' category, Gan Qixin, 2020/11/16
- [PATCH 05/13] mc146818rtc: put it into the 'misc' category, Gan Qixin, 2020/11/16
- [PATCH 03/13] vmmouse: put it into the 'input' category,
Gan Qixin <=
- [PATCH 04/13] nvdimm: put it into the 'storage' category, Gan Qixin, 2020/11/16
- [PATCH 06/13] ipmi: put some ipmi devices into the correct category, Gan Qixin, 2020/11/16
- [PATCH 08/13] AMDVI-PCI: put it into the 'misc' category, Gan Qixin, 2020/11/16
- [PATCH 07/13] tpm: put some tpm devices into the correct category, Gan Qixin, 2020/11/16
- [PATCH 02/13] virtio-pmem: put it into the 'storage' category, Gan Qixin, 2020/11/16
- [PATCH 09/13] u2f-passthru: put it into the 'usb' category, Gan Qixin, 2020/11/16