linux/bug.h: correct "space required before that '-'"
authorIan Abbott <[email protected]>
Mon, 10 Jul 2017 22:51:04 +0000 (15:51 -0700)
committerLinus Torvalds <[email protected]>
Mon, 10 Jul 2017 23:32:34 +0000 (16:32 -0700)
commit47e81e59d98b90727a02ceb486407eeed5eb8727
treed43a183b232918a31c541a7ec468b40d119a86fe
parent8cdd7cca9287abf4c849c01e2a4e8207ad3e3a82
linux/bug.h: correct "space required before that '-'"

Correct these checkpatch.pl errors:

|ERROR: space required before that '-' (ctx:OxO)
|#37: FILE: include/linux/bug.h:37:
|+#define BUILD_BUG_ON_ZERO(e) (sizeof(struct { int:-!!(e); }))

|ERROR: space required before that '-' (ctx:OxO)
|#38: FILE: include/linux/bug.h:38:
|+#define BUILD_BUG_ON_NULL(e) ((void *)sizeof(struct { int:-!!(e); }))

I decided to wrap the bitfield expressions that begin with minus signs
in parentheses rather than insert spaces before the minus signs.

Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Ian Abbott <[email protected]>
Acked-by: Michal Nazarewicz <[email protected]>
Cc: Kees Cook <[email protected]>
Cc: Steven Rostedt <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Cc: Jakub Kicinski <[email protected]>
Cc: Rasmus Villemoes <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
include/linux/bug.h