[PATCH] staging: Fix spacing between function name and parentheses
Nicholas Krause
xerofoify at gmail.com
Fri Oct 10 21:55:48 EDT 2014
Fixes checkpatch coding style warning about unneeded space
between function name an parentheses.
Signed-off-by: Nicholas Krause <xerofoify at gmail.com>
---
Untested
drivers/staging/octeon-usb/octeon-hcd.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/staging/octeon-usb/octeon-hcd.c b/drivers/staging/octeon-usb/octeon-hcd.c
index 5f9db4c..bbeb0cc 100644
--- a/drivers/staging/octeon-usb/octeon-hcd.c
+++ b/drivers/staging/octeon-usb/octeon-hcd.c
@@ -412,7 +412,7 @@ struct octeon_hcd {
type c; \
while (1) { \
c.u32 = __cvmx_usb_read_csr32(usb, address); \
- if (c.s.field op (value)) { \
+ if (c.s.field op(value)) { \
result = 0; \
break; \
} else if (cvmx_get_cycle() > done) { \
--
1.9.1
More information about the Kernelnewbies
mailing list