From: Sebastian Siewior Date: Thu, 17 Jul 2008 18:09:28 +0000 (+0200) Subject: usb: return error code instead of 0 in the enqueue function. X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=a36c27dfd1003e6d6842fe77faaf868e3e6e9062;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git usb: return error code instead of 0 in the enqueue function. if the enqueue function returns -ESHUTDOWN or -ENOMEM then we return 0 instead of an error. This leads to a timeout and then to a dequeue request of an not enqueued urb. Signed-off-by: Sebastian Siewior Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/usb/host/isp1760-hcd.c b/drivers/usb/host/isp1760-hcd.c index c858f2adb929..db5f4f5c7a10 100644 --- a/drivers/usb/host/isp1760-hcd.c +++ b/drivers/usb/host/isp1760-hcd.c @@ -1615,8 +1615,7 @@ static int isp1760_urb_enqueue(struct usb_hcd *hcd, struct urb *urb, return -EPIPE; } - isp1760_prepare_enqueue(priv, urb, &qtd_list, mem_flags, pe); - return 0; + return isp1760_prepare_enqueue(priv, urb, &qtd_list, mem_flags, pe); } static int isp1760_urb_dequeue(struct usb_hcd *hcd, struct urb *urb,