Message ID | 20200819012316.170388-1-jingxiangfeng@huawei.com |
---|---|
State | New |
Headers | show |
Series | USB: usblcd: Remove the superfluous break | expand |
diff --git a/drivers/usb/misc/usblcd.c b/drivers/usb/misc/usblcd.c index 61e9e987fe4a..bb546f624a45 100644 --- a/drivers/usb/misc/usblcd.c +++ b/drivers/usb/misc/usblcd.c @@ -187,7 +187,6 @@ static long lcd_ioctl(struct file *file, unsigned int cmd, unsigned long arg) break; default: return -ENOTTY; - break; } return 0;
Remove the superfuous break, as there is a 'return' before it. Signed-off-by: Jing Xiangfeng <jingxiangfeng@huawei.com> --- drivers/usb/misc/usblcd.c | 1 - 1 file changed, 1 deletion(-)