mirror of
https://github.com/edk2-porting/linux-next.git
synced 2025-01-11 15:14:03 +08:00
Staging: ft1000: fixed two coding style issues
Fixed two coding style issues, specifically: ft1000_proc.c:35: ERROR: space required before the open parenthesis '(' ft1000_proc.c:42: ERROR: space required before the open parenthesis '(' Signed-off-by: Aldo Iljazi <me@aldo.io> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
35fcf7e3c0
commit
0735e83c78
@ -32,14 +32,14 @@
|
||||
|
||||
#define seq_putx(m, message, size, var) \
|
||||
seq_printf(m, message); \
|
||||
for(i = 0; i < (size - 1); i++) { \
|
||||
for (i = 0; i < (size - 1); i++) { \
|
||||
seq_printf(m, "%02x:", var[i]); \
|
||||
} \
|
||||
seq_printf(m, "%02x\n", var[i])
|
||||
|
||||
#define seq_putd(m, message, size, var) \
|
||||
seq_printf(m, message); \
|
||||
for(i = 0; i < (size - 1); i++) { \
|
||||
for (i = 0; i < (size - 1); i++) { \
|
||||
seq_printf(m, "%d.", var[i]); \
|
||||
} \
|
||||
seq_printf(m, "%d\n", var[i])
|
||||
|
Loading…
Reference in New Issue
Block a user