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

Commit f10eff26 authored by Olav Kongas's avatar Olav Kongas Committed by Linus Torvalds
Browse files

[PATCH] USB: Fix setup packet initialization in isp116x-hcd



When recently addressing remarks by Alexey Dobriyan about
the isp116x-hcd, I introduced a bug in the driver. Please
apply the attached patch to fix it.

Signed-off-by: default avatarOlav Kongas <ok@artecdesign.ee>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 7dedacf4
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -229,9 +229,11 @@ static void preproc_atl_queue(struct isp116x *isp116x)
	struct isp116x_ep *ep;
	struct urb *urb;
	struct ptd *ptd;
	u16 toggle = 0, dir = PTD_DIR_SETUP, len;
	u16 len;

	for (ep = isp116x->atl_active; ep; ep = ep->active) {
		u16 toggle = 0, dir = PTD_DIR_SETUP;

		BUG_ON(list_empty(&ep->hep->urb_list));
		urb = container_of(ep->hep->urb_list.next,
				   struct urb, urb_list);