From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Daney Subject: [PATCH 06/11] parisc: Convert BUG() to use unreachable() Date: Mon, 14 Sep 2009 14:55:35 -0700 Message-ID: <1252965340-31735-6-git-send-email-ddaney@caviumnetworks.com> References: <4AAEBAC2.1050905@caviumnetworks.com> Cc: linux-kernel@vger.kernel.org, linux-arch@vger.kernel.org, David Daney , Kyle McMartin , Helge Deller , linux-parisc@vger.kernel.org To: torvalds@linux-foundation.org, akpm@linux-foundation.org Return-path: In-Reply-To: <4AAEBAC2.1050905@caviumnetworks.com> List-ID: List-Id: linux-parisc.vger.kernel.org Use the new unreachable() macro instead of for(;;); Signed-off-by: David Daney CC: Kyle McMartin CC: Helge Deller CC: linux-parisc@vger.kernel.org --- arch/parisc/include/asm/bug.h | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/parisc/include/asm/bug.h b/arch/parisc/include/asm/bug.h index 8cfc553..75e46c5 100644 --- a/arch/parisc/include/asm/bug.h +++ b/arch/parisc/include/asm/bug.h @@ -32,14 +32,14 @@ "\t.popsection" \ : : "i" (__FILE__), "i" (__LINE__), \ "i" (0), "i" (sizeof(struct bug_entry)) ); \ - for(;;) ; \ + unreachable(); \ } while(0) #else #define BUG() \ do { \ asm volatile(PARISC_BUG_BREAK_ASM : : ); \ - for(;;) ; \ + unreachable(); \ } while(0) #endif -- 1.6.2.5