diff mbox

[1/7] Unbreak USB autoconnect filters

Message ID ae674d554caf119dbd57bda4ecea2a7dd6069260.1254867902.git.armbru@redhat.com
State Accepted
Headers show

Commit Message

Markus Armbruster Oct. 6, 2009, 11:15 p.m. UTC
Commit 22f84e73 added a qdev_init() missing on the path through
usb_host_device_open(), but that broke the path through
usb_host_auto_scan(), which already had one.  Remove that one.

Signed-off-by: Markus Armbruster <armbru@redhat.com>
---
 usb-linux.c |    2 --
 1 files changed, 0 insertions(+), 2 deletions(-)
diff mbox

Patch

diff --git a/usb-linux.c b/usb-linux.c
index 2b7b092..77cbf1b 100644
--- a/usb-linux.c
+++ b/usb-linux.c
@@ -1396,8 +1396,6 @@  static int usb_host_auto_scan(void *opaque, int bus_num, int addr,
         dprintf("husb: auto open: bus_num %d addr %d\n", bus_num, addr);
 
 	dev = usb_host_device_open_addr(bus_num, addr, product_name);
-	if (dev)
-            qdev_init(&dev->qdev);
     }
 
     return 0;