From a6a01369fdf7c1376421b243ae740465a527b96c Mon Sep 17 00:00:00 2001 From: Julia Lawall Date: Wed, 14 Nov 2007 09:15:16 +0100 Subject: USB: Drop unnecessary continue in a few drivers Continue is not needed at the bottom of a loop. The semantic patch implementing this change is as follows: @@ @@ for (...;...;...) { ... if (...) { ... - continue; } } Signed-off-by: Julia Lawall Signed-off-by: Greg Kroah-Hartman --- drivers/usb/image/mdc800.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'drivers/usb/image') diff --git a/drivers/usb/image/mdc800.c b/drivers/usb/image/mdc800.c index d1131a87a5b..0fb114ca1eb 100644 --- a/drivers/usb/image/mdc800.c +++ b/drivers/usb/image/mdc800.c @@ -478,8 +478,6 @@ static int mdc800_usb_probe (struct usb_interface *intf, { irq_interval=intf_desc->endpoint [j].desc.bInterval; } - - continue; } } if (mdc800->endpoint[i] == -1) -- cgit v1.2.3