diff options
author | Rusty Russell <rusty@rustcorp.com.au> | 2011-01-24 23:45:10 +0300 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2011-01-24 07:15:11 +0300 |
commit | 1765e3a4933ea0870fabd755feffc5473c4363ce (patch) | |
tree | 208364f2933f96773310a3a6c4dce6a21f66eec7 /include/linux/gfp.h | |
parent | 7ef88ad561457c0346355dfd1f53e503ddfde719 (diff) | |
download | linux-1765e3a4933ea0870fabd755feffc5473c4363ce.tar.xz |
Remove MAYBE_BUILD_BUG_ON
Now BUILD_BUG_ON() can handle optimizable constants, we don't need
MAYBE_BUILD_BUG_ON any more.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Diffstat (limited to 'include/linux/gfp.h')
-rw-r--r-- | include/linux/gfp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/gfp.h b/include/linux/gfp.h index a3b148a91874..0b84c61607e8 100644 --- a/include/linux/gfp.h +++ b/include/linux/gfp.h @@ -249,7 +249,7 @@ static inline enum zone_type gfp_zone(gfp_t flags) ((1 << ZONES_SHIFT) - 1); if (__builtin_constant_p(bit)) - MAYBE_BUILD_BUG_ON((GFP_ZONE_BAD >> bit) & 1); + BUILD_BUG_ON((GFP_ZONE_BAD >> bit) & 1); else { #ifdef CONFIG_DEBUG_VM BUG_ON((GFP_ZONE_BAD >> bit) & 1); |