Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit afea03fc authored by Manish Narani's avatar Manish Narani Committed by Nicholas Bellinger
Browse files

usb: gadget: Correct usb EP argument for BOT status request



This patch corrects the argument in usb_ep_free_request as it is
mistakenly set to ep_out. It should be ep_in for status request.

Signed-off-by: default avatarManish Narani <mnarani@xilinx.com>
Acked-by: default avatarFelipe Balbi <felipe.balbi@linux.intel.com>
Signed-off-by: default avatarNicholas Bellinger <nab@linux-iscsi.org>
parent 740372b7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -373,7 +373,7 @@ static void bot_cleanup_old_alt(struct f_uas *fu)
	usb_ep_free_request(fu->ep_in, fu->bot_req_in);
	usb_ep_free_request(fu->ep_out, fu->bot_req_out);
	usb_ep_free_request(fu->ep_out, fu->cmd.req);
	usb_ep_free_request(fu->ep_out, fu->bot_status.req);
	usb_ep_free_request(fu->ep_in, fu->bot_status.req);

	kfree(fu->cmd.buf);