diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2011-12-08 21:25:37 -0500 |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2011-12-12 05:26:35 -0500 |
commit | 37332ee0dfb017aea566047be945d6fd3531c713 (patch) | |
tree | 6a7f701429a3684e973873bedc4e0e594018a06e /drivers/usb/renesas_usbhs | |
parent | 2bcb75144027fcee878319de87a967a4dec49403 (diff) |
usb: renesas_usbhs: add lost error value when enqueue
usbhsh_urb_enqueue() didn't have error value when
usbhsh_device_attach() failed
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers/usb/renesas_usbhs')
-rw-r--r-- | drivers/usb/renesas_usbhs/mod_host.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/usb/renesas_usbhs/mod_host.c b/drivers/usb/renesas_usbhs/mod_host.c index 182bdb8e45e..c3940478327 100644 --- a/drivers/usb/renesas_usbhs/mod_host.c +++ b/drivers/usb/renesas_usbhs/mod_host.c | |||
@@ -760,8 +760,10 @@ static int usbhsh_urb_enqueue(struct usb_hcd *hcd, | |||
760 | */ | 760 | */ |
761 | if (!usbhsh_usbv_to_udev(usbv)) { | 761 | if (!usbhsh_usbv_to_udev(usbv)) { |
762 | new_udev = usbhsh_device_attach(hpriv, urb); | 762 | new_udev = usbhsh_device_attach(hpriv, urb); |
763 | if (!new_udev) | 763 | if (!new_udev) { |
764 | ret = -EIO; | ||
764 | goto usbhsh_urb_enqueue_error_not_linked; | 765 | goto usbhsh_urb_enqueue_error_not_linked; |
766 | } | ||
765 | } | 767 | } |
766 | 768 | ||
767 | /* | 769 | /* |