浏览代码

m68k: macro whitespace fixes

While working on arch/m68k/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: Geert Uytterhoeven <geert@linux-m68k.org>
Michael S. Tsirkin 10 年之前
父节点
当前提交
e9e6d91855
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      arch/m68k/include/asm/segment.h

+ 1 - 1
arch/m68k/include/asm/segment.h

@@ -58,7 +58,7 @@ static inline mm_segment_t get_ds(void)
 #define set_fs(x)	(current_thread_info()->addr_limit = (x))
 #endif
 
-#define segment_eq(a,b)	((a).seg == (b).seg)
+#define segment_eq(a, b) ((a).seg == (b).seg)
 
 #endif /* __ASSEMBLY__ */