diff options
author | Joe Perches <joe@perches.com> | 2013-10-09 01:01:37 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-10-12 01:26:46 +0200 |
commit | 2b84f92b8141679be6b90396655fa4887589ec28 (patch) | |
tree | 412ce6b97862813978b33b043eab4993b337bd09 /drivers/usb/musb/musb_dsps.c | |
parent | usb: chipidea: udc: Fix calling spin_lock_irqsave at sleep context (diff) | |
download | linux-2b84f92b8141679be6b90396655fa4887589ec28.tar.xz linux-2b84f92b8141679be6b90396655fa4887589ec28.zip |
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/musb/musb_dsps.c')
-rw-r--r-- | drivers/usb/musb/musb_dsps.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/musb/musb_dsps.c b/drivers/usb/musb/musb_dsps.c index bd4138d80a48..1a5574c2d586 100644 --- a/drivers/usb/musb/musb_dsps.c +++ b/drivers/usb/musb/musb_dsps.c @@ -443,7 +443,7 @@ static int get_musb_port_mode(struct device *dev) case USB_DR_MODE_OTG: default: return MUSB_PORT_MODE_DUAL_ROLE; - }; + } } static int dsps_create_musb_pdev(struct dsps_glue *glue, |