[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1503613279-29468-1-git-send-email-himanshujha199640@gmail.com>
Date: Fri, 25 Aug 2017 03:51:19 +0530
From: Himanshu Jha <himanshujha199640@...il.com>
To: johan@...nel.org
Cc: gregkh@...uxfoundation.org, linux-usb@...r.kernel.org,
linux-kernel@...r.kernel.org,
Himanshu Jha <himanshujha199640@...il.com>
Subject: [PATCH] USB: serial: ti_usb_3410_5052: remove unnecessary brace
Braces are not required for single statement blocks.
Issue found using checkpatch.pl
Signed-off-by: Himanshu Jha <himanshujha199640@...il.com>
---
drivers/usb/serial/ti_usb_3410_5052.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/drivers/usb/serial/ti_usb_3410_5052.c b/drivers/usb/serial/ti_usb_3410_5052.c
index 8fc3854..1980d6d 100644
--- a/drivers/usb/serial/ti_usb_3410_5052.c
+++ b/drivers/usb/serial/ti_usb_3410_5052.c
@@ -822,9 +822,8 @@ static int ti_write(struct tty_struct *tty, struct usb_serial_port *port,
{
struct ti_port *tport = usb_get_serial_port_data(port);
- if (count == 0) {
+ if (count == 0)
return 0;
- }
if (!tport->tp_is_open)
return -ENODEV;
--
2.7.4
Powered by blists - more mailing lists