diff options
author | Chris Metcalf <cmetcalf@tilera.com> | 2010-10-14 16:50:26 -0400 |
---|---|---|
committer | Chris Metcalf <cmetcalf@tilera.com> | 2010-10-15 15:40:03 -0400 |
commit | e18105c128734b1671739ad4d85e216ebec28c61 (patch) | |
tree | 66846afddb58b824b3146a1ea10cbffcb6f2d206 /arch | |
parent | ce7f2a39675ea5e8e27b3f3bb03e5041c7d10412 (diff) | |
download | linux-3.10-e18105c128734b1671739ad4d85e216ebec28c61.tar.gz linux-3.10-e18105c128734b1671739ad4d85e216ebec28c61.tar.bz2 linux-3.10-e18105c128734b1671739ad4d85e216ebec28c61.zip |
arch/tile: convert a BUG_ON to BUILD_BUG_ON
Inspired by Akinobu Mita's cleanup work.
Signed-off-by: Chris Metcalf <cmetcalf@tilera.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/tile/kernel/setup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/tile/kernel/setup.c b/arch/tile/kernel/setup.c index 6444a2bbe1a..f3a50e74f9a 100644 --- a/arch/tile/kernel/setup.c +++ b/arch/tile/kernel/setup.c @@ -311,7 +311,7 @@ static void __init setup_memory(void) #endif /* We are using a char to hold the cpu_2_node[] mapping */ - BUG_ON(MAX_NUMNODES > 127); + BUILD_BUG_ON(MAX_NUMNODES > 127); /* Discover the ranges of memory available to us */ for (i = 0; ; ++i) { |