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

Commit e18105c1 authored by Chris Metcalf's avatar Chris Metcalf
Browse files

arch/tile: convert a BUG_ON to BUILD_BUG_ON



Inspired by Akinobu Mita's cleanup work.

Signed-off-by: default avatarChris Metcalf <cmetcalf@tilera.com>
parent ce7f2a39
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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) {