projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5002443
)
staging: rts5208: Fix indentation
author
Rehas Sachdeva
<aquannie@gmail.com>
Tue, 20 Sep 2016 11:15:33 +0000
(16:45 +0530)
committer
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Tue, 20 Sep 2016 12:03:04 +0000
(14:03 +0200)
Fixes indentation by removing unnecessary TAB. Issue found by checkpatch.
Signed-off-by: Rehas Sachdeva <aquannie@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rts5208/rtsx.h
patch
|
blob
|
history
diff --git
a/drivers/staging/rts5208/rtsx.h
b/drivers/staging/rts5208/rtsx.h
index 2f902d5e1a1d81e71c5d3625d4aeec6235ca97e1..c0f513c786594a0f4ecf46f9dcae047e2a2bec9c 100644
(file)
--- a/
drivers/staging/rts5208/rtsx.h
+++ b/
drivers/staging/rts5208/rtsx.h
@@
-70,10
+70,10
@@
#define rtsx_write_config_byte(chip, where, val) \
pci_write_config_byte((chip)->rtsx->pci, where, val)
-#define wait_timeout_x(task_state, msecs)
\
-do {
\
-
set_current_state((task_state)); \
-
schedule_timeout((msecs) * HZ / 1000); \
+#define wait_timeout_x(task_state, msecs) \
+do { \
+ set_current_state((task_state)); \
+ schedule_timeout((msecs) * HZ / 1000); \
} while (0)
#define wait_timeout(msecs) wait_timeout_x(TASK_INTERRUPTIBLE, (msecs))