Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753262AbZIJX6A (ORCPT ); Thu, 10 Sep 2009 19:58:00 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1750853AbZIJX6A (ORCPT ); Thu, 10 Sep 2009 19:58:00 -0400 Received: from mail3.caviumnetworks.com ([12.108.191.235]:16144 "EHLO mail3.caviumnetworks.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752988AbZIJX5n (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 , Martin Schwidefsky , Heiko Carstens , linux390@de.ibm.com, linux-s390@vger.kernel.org Subject: [PATCH 04/10] s390: Convert BUG() to use unreachable() Date: Thu, 10 Sep 2009 16:56:45 -0700 Message-Id: <1252627011-2933-4-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.0813 (UTC) FILETIME=[65BE95D0:01CA3272] Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 933 Lines: 32 Use the new unreachable() macro instead of for(;;); Signed-off-by: David Daney CC: Martin Schwidefsky CC: Heiko Carstens CC: linux390@de.ibm.com CC: linux-s390@vger.kernel.org --- arch/s390/include/asm/bug.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/s390/include/asm/bug.h b/arch/s390/include/asm/bug.h index 7efd0ab..efb74fd 100644 --- a/arch/s390/include/asm/bug.h +++ b/arch/s390/include/asm/bug.h @@ -49,7 +49,7 @@ #define BUG() do { \ __EMIT_BUG(0); \ - for (;;); \ + unreachable(); \ } while (0) #define WARN_ON(x) ({ \ -- 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/