Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ca39599c authored by Dr. David Alan Gilbert's avatar Dr. David Alan Gilbert Committed by Linus Torvalds
Browse files

BUILD_BUG_ON_ZERO: fix sparse breakage



BUILD_BUG_ON_ZERO and BUILD_BUG_ON_NULL must return values, even in the
CHECKER case otherwise various users of it become syntactically invalid.

Signed-off-by: default avatarDr. David Alan Gilbert <linux@treblig.org>
Reviewed-by: default avatarKOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 3957c776
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -671,8 +671,8 @@ struct sysinfo {

#ifdef __CHECKER__
#define BUILD_BUG_ON_NOT_POWER_OF_2(n)
#define BUILD_BUG_ON_ZERO(e)
#define BUILD_BUG_ON_NULL(e)
#define BUILD_BUG_ON_ZERO(e) (0)
#define BUILD_BUG_ON_NULL(e) ((void*)0)
#define BUILD_BUG_ON(condition)
#else /* __CHECKER__ */