From mboxrd@z Thu Jan 1 00:00:00 1970 From: Randy Dunlap Subject: [PATCH 1/2] asm-generic: add __WARN() to bug.h Date: Wed, 14 Nov 2012 16:59:10 -0800 Message-ID: <50A43E5E.9040905@xenotime.net> References: <20121114163042.64f0c0495663331b9c2d60d6@canb.auug.org.au> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <20121114163042.64f0c0495663331b9c2d60d6@canb.auug.org.au> Sender: linux-arch-owner@vger.kernel.org To: Arnd Bergmann Cc: Stephen Rothwell , linux-next@vger.kernel.org, linux-kernel@vger.kernel.org, Andrew Morton , linux-arch@vger.kernel.org, Rafael Aquini , linux-mm@kvack.org List-Id: linux-next.vger.kernel.org From: Randy Dunlap Add __WARN() macro for the case of CONFIG_BUG is not enabled. This fixes a build error in mm/balloon_compaction.c. Signed-off-by: Randy Dunlap Cc: Arnd Bergmann Cc: linux-arch@vger.kernel.org Cc: Rafael Aquini Cc: linux-mm@kvack.org --- include/asm-generic/bug.h | 4 ++++ 1 file changed, 4 insertions(+) --- linux-next-20121114.orig/include/asm-generic/bug.h +++ linux-next-20121114/include/asm-generic/bug.h @@ -129,6 +129,10 @@ extern void warn_slowpath_null(const cha }) #endif +#ifndef __WARN +#define __WARN() do {} while (0) +#endif + #define WARN_TAINT(condition, taint, format...) WARN_ON(condition) #endif