aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/usb/isp1760/isp1760-hcd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/usb/isp1760/isp1760-hcd.c b/drivers/usb/isp1760/isp1760-hcd.c
index 8142c6b4c4cf..320fc4739835 100644
--- a/drivers/usb/isp1760/isp1760-hcd.c
+++ b/drivers/usb/isp1760/isp1760-hcd.c
@@ -788,11 +788,11 @@ static void collect_qtds(struct usb_hcd *hcd, struct isp1760_qh *qh,
788 mem_reads8(hcd->regs, qtd->payload_addr, 788 mem_reads8(hcd->regs, qtd->payload_addr,
789 qtd->data_buffer, 789 qtd->data_buffer,
790 qtd->actual_length); 790 qtd->actual_length);
791 /* Fall through (?) */ 791 /* Fall through */
792 case OUT_PID: 792 case OUT_PID:
793 qtd->urb->actual_length += 793 qtd->urb->actual_length +=
794 qtd->actual_length; 794 qtd->actual_length;
795 /* Fall through ... */ 795 /* Fall through */
796 case SETUP_PID: 796 case SETUP_PID:
797 break; 797 break;
798 } 798 }