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

arm64: macro whitespace fixes

While working on arch/arm64/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>
Acked-by: Will Deacon <will.deacon@arm.com>

+1 -1
+1 -1
arch/arm64/include/asm/uaccess.h
··· 63 63 current_thread_info()->addr_limit = fs; 64 64 } 65 65 66 - #define segment_eq(a,b) ((a) == (b)) 66 + #define segment_eq(a, b) ((a) == (b)) 67 67 68 68 /* 69 69 * Return 1 if addr < current->addr_limit, 0 otherwise.