diff options
| author | Gerd Hoffmann <kraxel@redhat.com> | 2012-07-03 10:15:08 +0200 |
|---|---|---|
| committer | Gerd Hoffmann <kraxel@redhat.com> | 2012-07-09 11:59:55 +0200 |
| commit | 7c37e6a4c4972ad3cdb2478a0249757ee3a1bf70 (patch) | |
| tree | 891c2a7ec6d14afa682a7d8af3bc12229d35f868 /hw/usb.h | |
| parent | 19deaa089cb874912767bc6071f3b7372d3ff961 (diff) | |
| download | focaccia-qemu-7c37e6a4c4972ad3cdb2478a0249757ee3a1bf70.tar.gz focaccia-qemu-7c37e6a4c4972ad3cdb2478a0249757ee3a1bf70.zip | |
usb: fix interface initialization
zero is a valid interface number, so don't use it when resetting the endpoints. Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'hw/usb.h')
| -rw-r--r-- | hw/usb.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/hw/usb.h b/hw/usb.h index 9cd2f89666..7ed8fb8fcf 100644 --- a/hw/usb.h +++ b/hw/usb.h @@ -145,6 +145,8 @@ #define USB_ENDPOINT_XFER_INT 3 #define USB_ENDPOINT_XFER_INVALID 255 +#define USB_INTERFACE_INVALID 255 + typedef struct USBBus USBBus; typedef struct USBBusOps USBBusOps; typedef struct USBPort USBPort; |