diff options
author | Rusty Russell <rusty@rustcorp.com.au> | 2011-01-24 14:45:10 -0600 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2011-01-24 14:45:11 +1030 |
commit | 1765e3a4933ea0870fabd755feffc5473c4363ce (patch) | |
tree | 208364f2933f96773310a3a6c4dce6a21f66eec7 /include/linux/kernel.h | |
parent | 7ef88ad561457c0346355dfd1f53e503ddfde719 (diff) | |
download | linux-3.10-1765e3a4933ea0870fabd755feffc5473c4363ce.tar.gz linux-3.10-1765e3a4933ea0870fabd755feffc5473c4363ce.tar.bz2 linux-3.10-1765e3a4933ea0870fabd755feffc5473c4363ce.zip |
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/kernel.h')
-rw-r--r-- | include/linux/kernel.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/linux/kernel.h b/include/linux/kernel.h index 864712f3653..e2f4d6af212 100644 --- a/include/linux/kernel.h +++ b/include/linux/kernel.h @@ -611,7 +611,6 @@ extern int __build_bug_on_failed; if (condition) __build_bug_on_failed = 1; \ } while(0) #endif -#define MAYBE_BUILD_BUG_ON(condition) BUILD_BUG_ON(condition) /* Trap pasters of __FUNCTION__ at compile-time */ #define __FUNCTION__ (__func__) |