USB: musb_host: undo incorrect change in musb_advance_schedule()

Commit c9cd06b3d6ea825c62e277def929cc4315802b48 (musb_host: refactor
URB giveback) included due to my overlook the change incorrect in the
context of the current kernel -- undo it.

Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
Acked-by: David Brownell <dbrownell@users.sourceforge.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>

authored by Sergei Shtylyov and committed by Greg Kroah-Hartman 1fe975f9 0cce2eda

+1 -1
+1 -1
drivers/usb/musb/musb_host.c
··· 373 373 musb_save_toggle(qh, is_in, urb); 374 374 break; 375 375 case USB_ENDPOINT_XFER_ISOC: 376 - if (urb->error_count) 376 + if (status == 0 && urb->error_count) 377 377 status = -EXDEV; 378 378 break; 379 379 }