diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2011-08-29 12:57:48 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2012-01-17 09:44:50 +0100 |
commit | 82f02fe96514605d0bb46f976871ec662193394a (patch) | |
tree | 724473df6de2caf49f4f273b22623b421cbc1c8f /usb-linux.c | |
parent | d8e17efdecaaa1a2d5c8f422fc44ae229e7f4fb4 (diff) | |
download | qemu-82f02fe96514605d0bb46f976871ec662193394a.zip |
usb: add ifnum to USBEndpoint
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'usb-linux.c')
-rw-r--r-- | usb-linux.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/usb-linux.c b/usb-linux.c index 9967975f2b..cb66ef3469 100644 --- a/usb-linux.c +++ b/usb-linux.c @@ -1206,6 +1206,7 @@ static int usb_linux_update_endp_table(USBHostDevice *s) assert(usb_ep_get_type(&s->dev, pid, ep) == USB_ENDPOINT_XFER_INVALID); usb_ep_set_type(&s->dev, pid, ep, type); + usb_ep_set_ifnum(&s->dev, pid, ep, interface); epd = get_endp(s, pid, ep); epd->halted = 0; |