From: Marcel Apfelbaum <[email protected]> usb-tablet device was wrongly assigned to Misc category
Reported-by: Markus Armbruster <[email protected]> Cc: [email protected] Signed-off-by: Marcel Apfelbaum <[email protected]> Reviewed-by: Andreas Färber <[email protected]> Signed-off-by: Gerd Hoffmann <[email protected]> (cherry picked from commit 31efd2e883018b4c079ad082105bc161fbb3fef8) Signed-off-by: Michael Roth <[email protected]> --- hw/usb/dev-hid.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/usb/dev-hid.c b/hw/usb/dev-hid.c index 66c6331..5956720 100644 --- a/hw/usb/dev-hid.c +++ b/hw/usb/dev-hid.c @@ -658,7 +658,7 @@ static void usb_tablet_class_initfn(ObjectClass *klass, void *data) uc->product_desc = "QEMU USB Tablet"; dc->vmsd = &vmstate_usb_ptr; dc->props = usb_tablet_properties; - set_bit(DEVICE_CATEGORY_MISC, dc->categories); + set_bit(DEVICE_CATEGORY_INPUT, dc->categories); } static const TypeInfo usb_tablet_info = { -- 1.7.9.5
