[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: Olav Kongas <ok@artecdesign.ee>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>

authored by Olav Kongas and committed by Linus Torvalds f10eff26 7dedacf4

+3 -1
+3 -1
drivers/usb/host/isp116x-hcd.c
··· 229 struct isp116x_ep *ep; 230 struct urb *urb; 231 struct ptd *ptd; 232 - u16 toggle = 0, dir = PTD_DIR_SETUP, len; 233 234 for (ep = isp116x->atl_active; ep; ep = ep->active) { 235 BUG_ON(list_empty(&ep->hep->urb_list)); 236 urb = container_of(ep->hep->urb_list.next, 237 struct urb, urb_list);
··· 229 struct isp116x_ep *ep; 230 struct urb *urb; 231 struct ptd *ptd; 232 + u16 len; 233 234 for (ep = isp116x->atl_active; ep; ep = ep->active) { 235 + u16 toggle = 0, dir = PTD_DIR_SETUP; 236 + 237 BUG_ON(list_empty(&ep->hep->urb_list)); 238 urb = container_of(ep->hep->urb_list.next, 239 struct urb, urb_list);