diff options
author | David Daney <ddaney@caviumnetworks.com> | 2009-12-10 09:28:21 -0800 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2009-12-15 08:38:35 -0500 |
commit | 64a2b168023bfd09037ba760838762e56c44178e (patch) | |
tree | 9251710674f6eb93b517782d0f48013f20b98a0d /arch/blackfin | |
parent | 5540a44e3ec5b738e9cf09d0c3a6f95328468701 (diff) | |
download | linux-3.10-64a2b168023bfd09037ba760838762e56c44178e.tar.gz linux-3.10-64a2b168023bfd09037ba760838762e56c44178e.tar.bz2 linux-3.10-64a2b168023bfd09037ba760838762e56c44178e.zip |
Blackfin: Convert BUG() to use unreachable()
Use the new unreachable() macro instead of for(;;);
Signed-off-by: David Daney <ddaney@caviumnetworks.com>
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'arch/blackfin')
-rw-r--r-- | 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 6f4548a1355..75f6dc336d4 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) \ |