summaryrefslogtreecommitdiffstats
path: root/arch/powerpc
diff options
context:
space:
mode:
authorDavid Daney2009-12-10 08:28:19 +0100
committerBenjamin Herrenschmidt2009-12-18 04:54:27 +0100
commit01ae45bcd48527e90923d4a247259770eb836d2b (patch)
tree2fa42fb9785775b9a27d56f12a488ea3b7036db0 /arch/powerpc
parentpowerpc/pseries: Make declarations of cpu_hotplug_driver_lock() ANSI compatible. (diff)
downloadkernel-qcow2-linux-01ae45bcd48527e90923d4a247259770eb836d2b.tar.gz
kernel-qcow2-linux-01ae45bcd48527e90923d4a247259770eb836d2b.tar.xz
kernel-qcow2-linux-01ae45bcd48527e90923d4a247259770eb836d2b.zip
powerpc: Convert BUG() to use unreachable()
Use the new unreachable() macro instead of for(;;); Signed-off-by: David Daney <ddaney@caviumnetworks.com> CC: Benjamin Herrenschmidt <benh@kernel.crashing.org> CC: Paul Mackerras <paulus@samba.org> CC: linuxppc-dev@ozlabs.org Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc')
-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 { \