OSDN Git Service

staging: unisys: visorhba: visorhba_main.c: Fix #define formatting
authorDavid Binder <david.binder@unisys.com>
Fri, 17 Mar 2017 15:27:24 +0000 (11:27 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 21 Mar 2017 06:58:47 +0000 (07:58 +0100)
In an effort to create a more uniform coding style within the Unisys
s-Par driver set, this patch adjusts the formatting of all #define
directives within this source file to match the following template,
and thereby eliminate irregular usage of whitespace:
Reviewed-by: Tim Sell <timothy.sell@unisys.com>
The amount of whitespace used between the <token> and the <value> is
dependent on what is needed to make the surrounding #define directives
as uniform as possible.

Signed-off-by: David Binder <david.binder@unisys.com>
Signed-off-by: David Kershner <david.kershner@unisys.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/unisys/visorhba/visorhba_main.c

index 3df9c0e..d372115 100644 (file)
@@ -28,9 +28,9 @@
 
 /* The Send and Receive Buffers of the IO Queue may both be full */
 
-#define IOS_ERROR_THRESHOLD    1000
-#define MAX_PENDING_REQUESTS   (MIN_NUMSIGNALS * 2)
-#define VISORHBA_ERROR_COUNT   30
+#define IOS_ERROR_THRESHOLD  1000
+#define MAX_PENDING_REQUESTS (MIN_NUMSIGNALS * 2)
+#define VISORHBA_ERROR_COUNT 30
 
 static struct dentry *visorhba_debugfs_dir;
 
@@ -101,10 +101,10 @@ struct visorhba_devices_open {
        struct visorhba_devdata *devdata;
 };
 
-#define for_each_vdisk_match(iter, list, match)                          \
+#define for_each_vdisk_match(iter, list, match) \
        for (iter = &list->head; iter->next; iter = iter->next) \
-               if ((iter->channel == match->channel) &&                  \
-                   (iter->id == match->id) &&                    \
+               if ((iter->channel == match->channel) && \
+                   (iter->id == match->id) && \
                    (iter->lun == match->lun))
 
 /*