From: Christian Gromm Date: Mon, 19 Sep 2016 15:40:24 +0000 (+0200) Subject: staging: most: hdm-usb: remove calls to usb_unachor_urb X-Git-Tag: v4.9-rc1~119^2~374 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=3fbcb92b74581eaec224efe6972aab7359a5230b;p=karo-tx-linux.git staging: most: hdm-usb: remove calls to usb_unachor_urb This patch removes the calls to usb_unanchor_urb() from the completion routines, since disassociation of the URBs is already handles by the USB subsystem. Signed-off-by: Christian Gromm Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/most/hdm-usb/hdm_usb.c b/drivers/staging/most/hdm-usb/hdm_usb.c index f872ce9e43a1..9474b43c0f5a 100644 --- a/drivers/staging/most/hdm-usb/hdm_usb.c +++ b/drivers/staging/most/hdm-usb/hdm_usb.c @@ -401,7 +401,6 @@ static void hdm_write_completion(struct urb *urb) mbo->status = MBO_E_INVAL; break; } - usb_unanchor_urb(urb); } else { mbo->status = MBO_SUCCESS; mbo->processed_length = urb->actual_length; @@ -558,7 +557,6 @@ static void hdm_read_completion(struct urb *urb) mbo->status = MBO_E_INVAL; break; } - usb_unanchor_urb(urb); } else { mbo->processed_length = urb->actual_length; mbo->status = MBO_SUCCESS;