[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20220220131339.179648-1-ahamedhusni73@gmail.com>
Date: Sun, 20 Feb 2022 18:43:39 +0530
From: Husni Faiz <ahamedhusni73@...il.com>
To: johan@...nel.org, gregkh@...uxfoundation.org
Cc: Husni Faiz <ahamedhusni73@...il.com>, linux-usb@...r.kernel.org,
linux-kernel@...r.kernel.org
Subject: [PATCH v2 1/2] usb: serial: Fix Space Prohibited Coding Style Errors
This patch fixes "space prohibited before that ','" checkpatch error.
Removed the space after the function argument value "8".
Signed-off-by: Husni Faiz <ahamedhusni73@...il.com>
---
V1->V2 : Separated the style changes into multiple patches.
drivers/usb/serial/iuu_phoenix.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/usb/serial/iuu_phoenix.c b/drivers/usb/serial/iuu_phoenix.c
index 0be3b5e1eaf3..2f7784572c4d 100644
--- a/drivers/usb/serial/iuu_phoenix.c
+++ b/drivers/usb/serial/iuu_phoenix.c
@@ -360,7 +360,7 @@ static void iuu_led_activity_on(struct urb *urb)
usb_fill_bulk_urb(port->write_urb, port->serial->dev,
usb_sndbulkpipe(port->serial->dev,
port->bulk_out_endpointAddress),
- port->write_urb->transfer_buffer, 8 ,
+ port->write_urb->transfer_buffer, 8,
iuu_rxcmd, port);
usb_submit_urb(port->write_urb, GFP_ATOMIC);
}
@@ -380,7 +380,7 @@ static void iuu_led_activity_off(struct urb *urb)
usb_fill_bulk_urb(port->write_urb, port->serial->dev,
usb_sndbulkpipe(port->serial->dev,
port->bulk_out_endpointAddress),
- port->write_urb->transfer_buffer, 8 ,
+ port->write_urb->transfer_buffer, 8,
iuu_rxcmd, port);
usb_submit_urb(port->write_urb, GFP_ATOMIC);
}
--
2.25.1
Powered by blists - more mailing lists