aboutsummaryrefslogtreecommitdiff
path: root/hw
diff options
context:
space:
mode:
authorkumar sourav <sourav.jb1988@gmail.com>2019-01-25 20:44:40 +0530
committerLaurent Vivier <laurent@vivier.eu>2019-01-30 10:19:32 +0100
commitcbe9ed73f905b532918603c04807bfa84d6051fb (patch)
tree0e9832aedefa60b3057c88cfbeb9aeb88b7bdf0c /hw
parent89cb0c0403f27cdb040fc8bf84749333f3248e38 (diff)
hw: input: set category of the i8042 device
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>
Diffstat (limited to 'hw')
-rw-r--r--hw/input/pckbd.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/input/pckbd.c b/hw/input/pckbd.c
index 3e66713b47..72e7d5f6cc 100644
--- a/hw/input/pckbd.c
+++ b/hw/input/pckbd.c
@@ -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 = {