diff options
author | Michael S. Tsirkin <mst@redhat.com> | 2015-01-06 08:11:13 -0500 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2015-01-13 08:24:08 -0500 |
commit | 3237f28e6ce3318431d6f66271a35f5eca4e6439 (patch) | |
tree | 57c7a1481599c5714b1b6fc1193d0d5e7a3b8de2 | |
parent | 0e8a2eb02fda7b0c55c3ff5144590a8a79f47e33 (diff) |
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.h | 2 |
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 { | |||
23 | #define USER_DS KERNEL_DS | 23 | #define USER_DS KERNEL_DS |
24 | #endif | 24 | #endif |
25 | 25 | ||
26 | #define segment_eq(a,b) ((a).seg == (b).seg) | 26 | #define segment_eq(a, b) ((a).seg == (b).seg) |
27 | 27 | ||
28 | #define get_ds() (KERNEL_DS) | 28 | #define get_ds() (KERNEL_DS) |
29 | 29 | ||