diff options
author | David Daney <[email protected]> | 2009-12-04 17:44:54 -0800 |
---|---|---|
committer | Linus Torvalds <[email protected]> | 2009-12-05 09:10:12 -0800 |
commit | 27d16d08717faeaa8afd1b736a096dbaab90f08e (patch) | |
tree | 8ad39d27118f5b0ec68d120a4f593c26b68a339c | |
parent | 5506e68975c346e55f786b554e28e368cdede444 (diff) |
avr32: Convert BUG() to use unreachable()
Use the new unreachable() macro instead of for(;;);
Signed-off-by: David Daney <[email protected]>
Acked-by: Haavard Skinnemoen <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
-rw-r--r-- | arch/avr32/include/asm/bug.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/avr32/include/asm/bug.h b/arch/avr32/include/asm/bug.h index 331d45bab18f..2aa373cc61b5 100644 --- a/arch/avr32/include/asm/bug.h +++ b/arch/avr32/include/asm/bug.h @@ -52,7 +52,7 @@ #define BUG() \ do { \ _BUG_OR_WARN(0); \ - for (;;); \ + unreachable(); \ } while (0) #define WARN_ON(condition) \ |