Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

usb: musb: musb_core: Add space after that ','

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>
Link: https://lore.kernel.org/r/20210418174720.GA59520@user
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Saurav Girepunje and committed by
Greg Kroah-Hartman
c8604656 4a5d797a

+2 -2
+2 -2
drivers/usb/musb/musb_core.h
··· 375 375 unsigned dyn_fifo:1; /* dynamic FIFO supported? */ 376 376 377 377 unsigned bulk_split:1; 378 - #define can_bulk_split(musb,type) \ 378 + #define can_bulk_split(musb, type) \ 379 379 (((type) == USB_ENDPOINT_XFER_BULK) && (musb)->bulk_split) 380 380 381 381 unsigned bulk_combine:1; 382 - #define can_bulk_combine(musb,type) \ 382 + #define can_bulk_combine(musb, type) \ 383 383 (((type) == USB_ENDPOINT_XFER_BULK) && (musb)->bulk_combine) 384 384 385 385 /* is_suspended means USB B_PERIPHERAL suspend */