Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1761264AbZLJR3x (ORCPT ); Thu, 10 Dec 2009 12:29:53 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1761254AbZLJR3W (ORCPT ); Thu, 10 Dec 2009 12:29:22 -0500 Received: from mail3.caviumnetworks.com ([12.108.191.235]:3893 "EHLO mail3.caviumnetworks.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1761237AbZLJR3P (ORCPT ); Thu, 10 Dec 2009 12:29:15 -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 , Benjamin Herrenschmidt , Paul Mackerras , linuxppc-dev@ozlabs.org Subject: [PATCH 3/5] powerpc: Convert BUG() to use unreachable() Date: Thu, 10 Dec 2009 09:28:19 -0800 Message-Id: <1260466101-17545-3-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:29.0263 (UTC) FILETIME=[302F3DF0:01CA79BE] Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 990 Lines: 31 Use the new unreachable() macro instead of for(;;); Signed-off-by: David Daney CC: Benjamin Herrenschmidt CC: Paul Mackerras CC: linuxppc-dev@ozlabs.org --- arch/powerpc/include/asm/bug.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/powerpc/include/asm/bug.h b/arch/powerpc/include/asm/bug.h index 64e1fdc..2c15212 100644 --- a/arch/powerpc/include/asm/bug.h +++ b/arch/powerpc/include/asm/bug.h @@ -68,7 +68,7 @@ _EMIT_BUG_ENTRY \ : : "i" (__FILE__), "i" (__LINE__), \ "i" (0), "i" (sizeof(struct bug_entry))); \ - for(;;) ; \ + unreachable(); \ } while (0) #define BUG_ON(x) do { \ -- 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/