summaryrefslogtreecommitdiff
path: root/drivers/usb/core
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2013-10-08 23:01:37 (GMT)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-10-11 23:26:46 (GMT)
commit2b84f92b8141679be6b90396655fa4887589ec28 (patch)
tree412ce6b97862813978b33b043eab4993b337bd09 /drivers/usb/core
parent65b2fb32b5ce53e103e026b6f95b784c5921cd2e (diff)
downloadlinux-fsl-qoriq-2b84f92b8141679be6b90396655fa4887589ec28.tar.xz
usb: Remove unnecessary semicolons
These aren't necessary after switch and if blocks. Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/core')
-rw-r--r--drivers/usb/core/hub.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/core/hub.c b/drivers/usb/core/hub.c
index 2159f82..2e804a5 100644
--- a/drivers/usb/core/hub.c
+++ b/drivers/usb/core/hub.c
@@ -438,7 +438,7 @@ static void set_port_led(
case HUB_LED_OFF: s = "off"; break;
case HUB_LED_AUTO: s = "auto"; break;
default: s = "??"; break;
- }; s; }),
+ } s; }),
status);
}