Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753282AbZIJX6O (ORCPT ); Thu, 10 Sep 2009 19:58:14 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1753205AbZIJX57 (ORCPT ); Thu, 10 Sep 2009 19:57:59 -0400 Received: from mail3.caviumnetworks.com ([12.108.191.235]:16143 "EHLO mail3.caviumnetworks.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752984AbZIJX5n (ORCPT ); Thu, 10 Sep 2009 19:57:43 -0400 From: David Daney To: torvalds@linux-foundation.org, akpm@linux-foundation.org Cc: linux-kernel@vger.kernel.org, David Daney , Richard Henderson , Ivan Kokshaysky , linux-alpha@vger.kernel.org Subject: [PATCH 08/10] alpha: Convert BUG() to use unreachable() Date: Thu, 10 Sep 2009 16:56:49 -0700 Message-Id: <1252627011-2933-8-git-send-email-ddaney@caviumnetworks.com> X-Mailer: git-send-email 1.6.0.6 In-Reply-To: <4AA991C1.1050800@caviumnetworks.com> References: <4AA991C1.1050800@caviumnetworks.com> X-OriginalArrivalTime: 10 Sep 2009 23:57:04.0829 (UTC) FILETIME=[65C106D0:01CA3272] Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 986 Lines: 31 Use the new unreachable() macro instead of for(;;); Signed-off-by: David Daney CC: Richard Henderson CC: Ivan Kokshaysky CC: linux-alpha@vger.kernel.org --- arch/alpha/include/asm/bug.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/alpha/include/asm/bug.h b/arch/alpha/include/asm/bug.h index 1720c8a..53281f4 100644 --- a/arch/alpha/include/asm/bug.h +++ b/arch/alpha/include/asm/bug.h @@ -13,7 +13,7 @@ "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/