aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael S. Tsirkin <mst@redhat.com>2015-01-06 15:11:13 +0200
committerMichael S. Tsirkin <mst@redhat.com>2015-01-13 15:24:08 +0200
commit3237f28e6ce3318431d6f66271a35f5eca4e6439 (patch)
tree57c7a1481599c5714b1b6fc1193d0d5e7a3b8de2
parentparisc: macro whitespace fixes (diff)
downloadlinux-dev-3237f28e6ce3318431d6f66271a35f5eca4e6439.tar.xz
linux-dev-3237f28e6ce3318431d6f66271a35f5eca4e6439.zip
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>
-rw-r--r--arch/sh/include/asm/segment.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sh/include/asm/segment.h b/arch/sh/include/asm/segment.h
index 5e2725f4ac49..ff795d3a6909 100644
--- a/arch/sh/include/asm/segment.h
+++ b/arch/sh/include/asm/segment.h
@@ -23,7 +23,7 @@ typedef struct {
#define USER_DS KERNEL_DS
#endif
-#define segment_eq(a,b) ((a).seg == (b).seg)
+#define segment_eq(a, b) ((a).seg == (b).seg)
#define get_ds() (KERNEL_DS)