* [PATCH] usb: musb: musb_core: Add space after that ','
@ 2021-04-18 17:47 Saurav Girepunje
0 siblings, 0 replies; only message in thread
From: Saurav Girepunje @ 2021-04-18 17:47 UTC (permalink / raw)
To: b-liu, gregkh, linux-usb, linux-kernel; +Cc: saurav.girepunje
Fix Error reported by checkpatch.pl
ERROR: space required after that ',' (ctx:VxV)
+#define can_bulk_split(musb,type) \
^
ERROR: space required after that ',' (ctx:VxV)
+#define can_bulk_combine(musb,type) \
^
Signed-off-by: Saurav Girepunje <saurav.girepunje@google.com>
---
drivers/usb/musb/musb_core.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/usb/musb/musb_core.h b/drivers/usb/musb/musb_core.h
index dbe5623db1e0..a8a65effe68b 100644
--- a/drivers/usb/musb/musb_core.h
+++ b/drivers/usb/musb/musb_core.h
@@ -375,11 +375,11 @@ struct musb {
unsigned dyn_fifo:1; /* dynamic FIFO supported? */
unsigned bulk_split:1;
-#define can_bulk_split(musb,type) \
+#define can_bulk_split(musb, type) \
(((type) == USB_ENDPOINT_XFER_BULK) && (musb)->bulk_split)
unsigned bulk_combine:1;
-#define can_bulk_combine(musb,type) \
+#define can_bulk_combine(musb, type) \
(((type) == USB_ENDPOINT_XFER_BULK) && (musb)->bulk_combine)
/* is_suspended means USB B_PERIPHERAL suspend */
--
2.25.1
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2021-04-18 17:47 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-04-18 17:47 [PATCH] usb: musb: musb_core: Add space after that ',' Saurav Girepunje
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.