hw: input: set category of the i8042 device
authorkumar sourav <sourav.jb1988@gmail.com>
Fri, 25 Jan 2019 15:14:40 +0000 (20:44 +0530)
committerLaurent Vivier <laurent@vivier.eu>
Wed, 30 Jan 2019 09:19:32 +0000 (10:19 +0100)
Sets the category of i8042 device as DEVICE_CATEGORY_INPUT
Devices should be assigned to one of DEVICE_CATEGORY_XXXX.

Signed-off-by: kumar sourav <sourav.jb1988@gmail.com>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Message-Id: <20190125151440.13794-1-sourav.jb1988@gmail.com>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
hw/input/pckbd.c

index 3e66713b4751511ceeed3d2ae86b7ab2f4d85318..72e7d5f6cc50d43933ff407bb33d07e85894b3da 100644 (file)
@@ -574,6 +574,7 @@ static void i8042_class_initfn(ObjectClass *klass, void *data)
 
     dc->realize = i8042_realizefn;
     dc->vmsd = &vmstate_kbd_isa;
+    set_bit(DEVICE_CATEGORY_INPUT, dc->categories);
 }
 
 static const TypeInfo i8042_info = {