From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1761257AbZLJR3X (ORCPT ); Thu, 10 Dec 2009 12:29:23 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1761246AbZLJR3T (ORCPT ); Thu, 10 Dec 2009 12:29:19 -0500 Received: from mail3.caviumnetworks.com ([12.108.191.235]:3885 "EHLO mail3.caviumnetworks.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1761230AbZLJR3O (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 , David Howells , Koichi Yasutake , linux-am33-list@redhat.com Subject: [PATCH 1/5] mn10300: Convert BUG() to use unreachable() Date: Thu, 10 Dec 2009 09:28:17 -0800 Message-Id: <1260466101-17545-1-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:27.0748 (UTC) FILETIME=[2F481240:01CA79BE] Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Use the new unreachable() macro instead of while(1). Signed-off-by: David Daney CC: David Howells CC: Koichi Yasutake CC: linux-am33-list@redhat.com --- arch/mn10300/include/asm/bug.h | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/arch/mn10300/include/asm/bug.h b/arch/mn10300/include/asm/bug.h index aa6a388..447a7e6 100644 --- a/arch/mn10300/include/asm/bug.h +++ b/arch/mn10300/include/asm/bug.h @@ -27,7 +27,8 @@ do { \ : \ : "i"(__FILE__), "i"(__LINE__) \ ); \ -} while (1) + unreachable(); \ +} while (0) #define HAVE_ARCH_BUG #endif /* CONFIG_BUG */ -- 1.6.2.5