OSDN Git Service

staging: unisys: fix macro spacing in uisutils.h
authorBenjamin Romer <benjamin.romer@unisys.com>
Tue, 28 Oct 2014 13:36:28 +0000 (09:36 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 29 Oct 2014 09:42:07 +0000 (17:42 +0800)
Add some space between the macros in uisutils.h for readability.

Signed-off-by: Benjamin Romer <benjamin.romer@unisys.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/unisys/include/uisutils.h

index 20758ae..7414220 100644 (file)
@@ -179,11 +179,14 @@ struct chaninfo {
        set_current_state(TASK_INTERRUPTIBLE); \
        schedule_timeout(msecs_to_jiffies(x)); \
 }
+
 #define UIS_THREAD_WAIT_USEC(x) { \
        set_current_state(TASK_INTERRUPTIBLE); \
        schedule_timeout(usecs_to_jiffies(x)); \
 }
+
 #define UIS_THREAD_WAIT UIS_THREAD_WAIT_MSEC(5)
+
 #define UIS_THREAD_WAIT_SEC(x) { \
        set_current_state(TASK_INTERRUPTIBLE); \
        schedule_timeout((x)*HZ); \