qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] hw/input/adb.c: set device category of adb
@ 2019-01-27 10:02 kumar sourav
  2019-01-27 13:27 ` David Gibson
  2019-01-28  9:06 ` [Qemu-devel] [Qemu-ppc] " Thomas Huth
  0 siblings, 2 replies; 4+ messages in thread
From: kumar sourav @ 2019-01-27 10:02 UTC (permalink / raw)
  To: qemu-trivial; +Cc: david, qemu-ppc, qemu-devel

Sets the category of adb as DEVICE_CATEGORY_INPUT
Devices should be assigned to one of DEVICE_CATEGORY_XXXX

Signed-off-by: kumar sourav <sourav.jb1988@gmail.com>
---
 hw/input/adb.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/hw/input/adb.c b/hw/input/adb.c
index bbb40aeef1..6ca7c5641c 100644
--- a/hw/input/adb.c
+++ b/hw/input/adb.c
@@ -126,6 +126,7 @@ static void adb_device_class_init(ObjectClass *oc, void *data)
     dc->realize = adb_device_realizefn;
     dc->props = adb_device_properties;
     dc->bus_type = TYPE_ADB_BUS;
+    set_bit(DEVICE_CATEGORY_INPUT, dc->categories);
 }
 
 static const TypeInfo adb_device_type_info = {
-- 
2.17.1

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2019-01-28  9:54 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-01-27 10:02 [Qemu-devel] [PATCH] hw/input/adb.c: set device category of adb kumar sourav
2019-01-27 13:27 ` David Gibson
2019-01-28  9:06 ` [Qemu-devel] [Qemu-ppc] " Thomas Huth
2019-01-28  9:17   ` David Gibson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).