diff options
author | Joe Perches <joe@perches.com> | 2009-08-18 18:18:35 (GMT) |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2009-09-21 13:14:58 (GMT) |
commit | a419aef8b858a2bdb98df60336063d28df4b272f (patch) | |
tree | 1736f6650ec0bfc01074c489fc47396114099c5e /drivers/usb/serial | |
parent | 2944fcbe03d65a704f07e43efe14adb0d226fd09 (diff) | |
download | linux-fsl-qoriq-a419aef8b858a2bdb98df60336063d28df4b272f.tar.xz |
trivial: remove unnecessary semicolons
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/usb/serial')
-rw-r--r-- | drivers/usb/serial/spcp8x5.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/serial/spcp8x5.c b/drivers/usb/serial/spcp8x5.c index 61e7c40..1e58220 100644 --- a/drivers/usb/serial/spcp8x5.c +++ b/drivers/usb/serial/spcp8x5.c @@ -544,7 +544,7 @@ static void spcp8x5_set_termios(struct tty_struct *tty, } /* Set Baud Rate */ - baud = tty_get_baud_rate(tty);; + baud = tty_get_baud_rate(tty); switch (baud) { case 300: buf[0] = 0x00; break; case 600: buf[0] = 0x01; break; |