Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

+1 -1
+1 -1
arch/sh/include/asm/segment.h
··· 23 23 #define USER_DS KERNEL_DS 24 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 28 #define get_ds() (KERNEL_DS) 29 29