staging: rts5208: Fix indentation
authorRehas Sachdeva <aquannie@gmail.com>
Tue, 20 Sep 2016 11:15:33 +0000 (16:45 +0530)
committerGreg 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

index 2f902d5..c0f513c 100644 (file)
 #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))