Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1761280AbZLJRaK (ORCPT ); Thu, 10 Dec 2009 12:30:10 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1761248AbZLJR3U (ORCPT ); Thu, 10 Dec 2009 12:29:20 -0500 Received: from mail3.caviumnetworks.com ([12.108.191.235]:3874 "EHLO mail3.caviumnetworks.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1761053AbZLJR3O (ORCPT ); Thu, 10 Dec 2009 12:29:14 -0500 From: David Daney To: linux-kernel@vger.kernel.org, linux-arch@vger.kernel.org Cc: akpm@linux-foundation.org, torvalds@linux-foundation.org, David Daney , Richard Henderson , Ivan Kokshaysky , Matt Turner , linux-alpha@vger.kernel.org Subject: [PATCH 4/5] alpha: Convert BUG() to use unreachable() Date: Thu, 10 Dec 2009 09:28:20 -0800 Message-Id: <1260466101-17545-4-git-send-email-ddaney@caviumnetworks.com> X-Mailer: git-send-email 1.6.0.6 In-Reply-To: <4B212EEC.3060808@caviumnetworks.com> References: <4B212EEC.3060808@caviumnetworks.com> X-OriginalArrivalTime: 10 Dec 2009 17:28:30.0326 (UTC) FILETIME=[30D17160:01CA79BE] Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1035 Lines: 33 Use the new unreachable() macro instead of for(;;); Signed-off-by: David Daney CC: Richard Henderson CC: Ivan Kokshaysky CC: Matt Turner CC: linux-alpha@vger.kernel.org --- arch/alpha/include/asm/bug.h | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/arch/alpha/include/asm/bug.h b/arch/alpha/include/asm/bug.h index 1720c8a..f091682 100644 --- a/arch/alpha/include/asm/bug.h +++ b/arch/alpha/include/asm/bug.h @@ -13,7 +13,8 @@ "call_pal %0 # bugchk\n\t" \ ".long %1\n\t.8byte %2" \ : : "i"(PAL_bugchk), "i"(__LINE__), "i"(__FILE__)); \ - for ( ; ; ); } while (0) + unreachable(); \ + } while (0) #define HAVE_ARCH_BUG #endif -- 1.6.2.5 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/