| Submitter | Gerd Hoffmann |
|---|---|
| Date | Nov. 29, 2012, 1:13 p.m. |
| Message ID | <1354194820-7767-3-git-send-email-kraxel@redhat.com> |
| Download | mbox | patch |
| Permalink | /patch/202737/ |
| State | New |
| Headers | show |
Comments
Patch
diff --git a/hw/usb/bus.c b/hw/usb/bus.c index 99aac7a..55d0edd 100644 --- a/hw/usb/bus.c +++ b/hw/usb/bus.c @@ -590,6 +590,13 @@ USBDevice *usbdevice_create(const char *cmdline) return NULL; } + if (!bus) { + error_report("Error: no usb bus to attach usbdevice %s, " + "please try -machine usb=on and check that " + "the machine model supports USB", driver); + return NULL; + } + if (!f->usbdevice_init) { if (*params) { error_report("usbdevice %s accepts no params", driver);