Skip to content

Commit

Permalink
m68k: macro whitespace fixes
Browse files Browse the repository at this point in the history
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 <[email protected]>
Acked-by: Geert Uytterhoeven <[email protected]>
  • Loading branch information
mstsirkin committed Jan 13, 2015
1 parent 0ab0660 commit e9e6d91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/m68k/include/asm/segment.h
Original file line number Diff line number Diff line change
Expand Up @@ -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__ */

Expand Down

0 comments on commit e9e6d91

Please sign in to comment.