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

frv: macro whitespace fixes

While working on arch/frv/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/frv/include/asm/segment.h
··· 31 31 32 32 #define get_ds() (KERNEL_DS) 33 33 #define get_fs() (__current_thread_info->addr_limit) 34 - #define segment_eq(a,b) ((a).seg == (b).seg) 34 + #define segment_eq(a, b) ((a).seg == (b).seg) 35 35 #define __kernel_ds_p() segment_eq(get_fs(), KERNEL_DS) 36 36 #define get_addr_limit() (get_fs().seg) 37 37