[PATCH 5/5] blackfin: Convert BUG() to use unreachable()

From: David Daney
Date: Thu Dec 10 2009 - 12:29:38 EST


Use the new unreachable() macro instead of for(;;);

Signed-off-by: David Daney <ddaney@xxxxxxxxxxxxxxxxxx>
CC: Mike Frysinger <vapier@xxxxxxxxxx>
CC: uclinux-dist-devel@xxxxxxxxxxxxxxxxxxxx
---
arch/blackfin/include/asm/bug.h | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/blackfin/include/asm/bug.h b/arch/blackfin/include/asm/bug.h
index 6f4548a..75f6dc3 100644
--- a/arch/blackfin/include/asm/bug.h
+++ b/arch/blackfin/include/asm/bug.h
@@ -47,7 +47,7 @@
#define BUG() \
do { \
_BUG_OR_WARN(0); \
- for (;;); \
+ unreachable(); \
} while (0)

#define WARN_ON(condition) \
--
1.6.2.5

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/