trivial: remove unnecessary semicolons
Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
此提交包含在:
@@ -506,8 +506,6 @@ static int wdm_open(struct inode *inode, struct file *file)
|
||||
desc = usb_get_intfdata(intf);
|
||||
if (test_bit(WDM_DISCONNECTING, &desc->flags))
|
||||
goto out;
|
||||
|
||||
;
|
||||
file->private_data = desc;
|
||||
|
||||
rv = usb_autopm_get_interface(desc->intf);
|
||||
|
@@ -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;
|
||||
|
新增問題並參考
封鎖使用者