Browse Source

sh: macro whitespace fixes

While working on arch/sh/include/asm/uaccess.h, I noticed
that one macro within this header is made harder to read because it
violates a coding style rule: space is missing after comma.

Fix it up.

Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Michael S. Tsirkin 10 years ago
parent
commit
3237f28e6c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      arch/sh/include/asm/segment.h

+ 1 - 1
arch/sh/include/asm/segment.h

@@ -23,7 +23,7 @@ typedef struct {
 #define USER_DS		KERNEL_DS
 #define USER_DS		KERNEL_DS
 #endif
 #endif
 
 
-#define segment_eq(a,b)	((a).seg == (b).seg)
+#define segment_eq(a, b) ((a).seg == (b).seg)
 
 
 #define get_ds()	(KERNEL_DS)
 #define get_ds()	(KERNEL_DS)