Commit e1970ee7 authored by Aldo Iljazi's avatar Aldo Iljazi Committed by Greg Kroah-Hartman

Drivers: staging: ft1000-usb: ft1000_proc.c: fixed a few styling issues.

Fixed a few styling issues, particularly:

Lines 36,42: Inserted a space before the open paranthesis.
Line 50: Removed space between function name and open parenthesis.
Lines 56,57: Removed trailing whitespace.
lines: 130, 133: Replaced spaces with tabs for identation.
Signed-off-by: default avatarAldo Iljazi <mail@aldo.io>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 28397dc9
......@@ -33,13 +33,13 @@
#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])
......@@ -47,7 +47,7 @@
#define FTNET_PROC init_net.proc_net
int ft1000_read_dpram16 (struct ft1000_usb *ft1000dev, u16 indx,
int ft1000_read_dpram16(struct ft1000_usb *ft1000dev, u16 indx,
u8 *buffer, u8 highlow);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment