Commit bd778ef0 authored by Rehas Sachdeva's avatar Rehas Sachdeva Committed by Greg Kroah-Hartman

staging: rts5208: Fix indentation

Fixes indentation by removing unnecessary TAB. Issue found by checkpatch.
Signed-off-by: default avatarRehas Sachdeva <aquannie@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 50024433
...@@ -70,10 +70,10 @@ ...@@ -70,10 +70,10 @@
#define rtsx_write_config_byte(chip, where, val) \ #define rtsx_write_config_byte(chip, where, val) \
pci_write_config_byte((chip)->rtsx->pci, where, val) pci_write_config_byte((chip)->rtsx->pci, where, val)
#define wait_timeout_x(task_state, msecs) \ #define wait_timeout_x(task_state, msecs) \
do { \ do { \
set_current_state((task_state)); \ set_current_state((task_state)); \
schedule_timeout((msecs) * HZ / 1000); \ schedule_timeout((msecs) * HZ / 1000); \
} while (0) } while (0)
#define wait_timeout(msecs) wait_timeout_x(TASK_INTERRUPTIBLE, (msecs)) #define wait_timeout(msecs) wait_timeout_x(TASK_INTERRUPTIBLE, (msecs))
......
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