aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Daney <[email protected]>2009-12-10 07:28:19 +0000
committerBenjamin Herrenschmidt <[email protected]>2009-12-18 14:54:27 +1100
commit01ae45bcd48527e90923d4a247259770eb836d2b (patch)
tree2fa42fb9785775b9a27d56f12a488ea3b7036db0
parent3d9b740b2d8d73795d745a46eabd55479ee68dcc (diff)
powerpc: Convert BUG() to use unreachable()
Use the new unreachable() macro instead of for(;;); Signed-off-by: David Daney <[email protected]> CC: Benjamin Herrenschmidt <[email protected]> CC: Paul Mackerras <[email protected]> CC: [email protected] Signed-off-by: Benjamin Herrenschmidt <[email protected]>
-rw-r--r--arch/powerpc/include/asm/bug.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/include/asm/bug.h b/arch/powerpc/include/asm/bug.h
index 64e1fdca233e..2c15212e1700 100644
--- a/arch/powerpc/include/asm/bug.h
+++ b/arch/powerpc/include/asm/bug.h
@@ -68,7 +68,7 @@
_EMIT_BUG_ENTRY \
: : "i" (__FILE__), "i" (__LINE__), \
"i" (0), "i" (sizeof(struct bug_entry))); \
- for(;;) ; \
+ unreachable(); \
} while (0)
#define BUG_ON(x) do { \