From: Michael S. Tsirkin Date: Tue, 6 Jan 2015 13:11:13 +0000 (+0200) Subject: sh: macro whitespace fixes X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=3237f28e6ce3318431d6f66271a35f5eca4e6439;p=deliverable%2Flinux.git 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 --- 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)