From patchwork Wed Mar 19 19:29:07 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Arnd Bergmann X-Patchwork-Id: 331872 Return-Path: X-Original-To: incoming-imx@patchwork.ozlabs.org Delivered-To: patchwork-incoming-imx@bilbo.ozlabs.org Received: from casper.infradead.org (unknown [IPv6:2001:770:15f::2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 0C8512C0097 for ; Thu, 20 Mar 2014 07:53:59 +1100 (EST) Received: from merlin.infradead.org ([2001:4978:20e::2]) by casper.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1WQMFI-0000TI-9o; Wed, 19 Mar 2014 19:33:50 +0000 Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.80.1 #2 (Red Hat Linux)) id 1WQMEN-0005lS-O2; Wed, 19 Mar 2014 19:32:51 +0000 Received: from moutng.kundenserver.de ([212.227.17.24]) by merlin.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1WQMCb-0005Vw-PG for linux-arm-kernel@lists.infradead.org; Wed, 19 Mar 2014 19:31:09 +0000 Received: from wuerfel.lan (HSI-KBW-134-3-135-108.hsi14.kabel-badenwuerttemberg.de [134.3.135.108]) by mrelayeu.kundenserver.de (node=mreue105) with ESMTP (Nemesis) id 0LvkQW-1XBPRW2u0i-017T4M; Wed, 19 Mar 2014 20:30:34 +0100 From: Arnd Bergmann To: arm@kernel.org Subject: [PATCH 10/62] ARM: efm32: select AUTO_ZRELADDR Date: Wed, 19 Mar 2014 20:29:07 +0100 Message-Id: <1395257399-359545-11-git-send-email-arnd@arndb.de> X-Mailer: git-send-email 1.8.3.2 In-Reply-To: <1395257399-359545-1-git-send-email-arnd@arndb.de> References: <1395257399-359545-1-git-send-email-arnd@arndb.de> MIME-Version: 1.0 X-Provags-ID: V02:K0:PS+Z5fm5wUugfK7NEzniMAOVugtV3f0s+ra8T/P6OH5 DB4/FuRKLV4h7Bf7M865bA34mjNRrOfmk+tkzIgprOVQ58FB88 E4hac/thO+Sb5OSeNK1lEXGCmniFn1RmfeKU2sHhYviBVTiEy9 6glW1stQd1hmdp2beVXBfo/yWx0kzyXQ22CJw2esHl4kh9T+L5 avxzImvSxdQ/UEGkNYa7i/dNsn4OCE1AQ2PVcCLA5vcDU5fC69 iRMLRvPhbqeN6/raYmf5cGkanJSA9N96K0iQdYC+EFkjZIOLZi mOEB5q185Qn8U6kUt65RkGoTUId41QVn9n5eyRDdXiAQo676pN KEs+kRqNDwU7woprZRWofZUMHOK4TvRnxGJfK0UXP X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20140319_153102_271825_71B92CB4 X-CRM114-Status: UNSURE ( 8.59 ) X-CRM114-Notice: Please train this message. X-Spam-Score: -1.9 (-) X-Spam-Report: SpamAssassin version 3.3.2 on merlin.infradead.org summary: Content analysis details: (-1.9 points) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 SPF_HELO_PASS SPF: HELO matches SPF record -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] Cc: =?UTF-8?q?Uwe=20Kleine-K=C3=B6nig?= , Arnd Bergmann , linux-arm-kernel@lists.infradead.org X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.15 Precedence: list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+incoming-imx=patchwork.ozlabs.org@lists.infradead.org List-Id: linux-imx-kernel.lists.patchwork.ozlabs.org The efm32 platform does not provide a zreladdr-y line its Makefile.boot, so we always have to use CONFIG_AUTO_ZRELADDR in order to successfully build and link a zImage. Signed-off-by: Arnd Bergmann Cc: Uwe Kleine-König --- arch/arm/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index 62ede9b..5776c12 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig @@ -422,6 +422,7 @@ config ARCH_EFM32 bool "Energy Micro efm32" depends on !MMU select ARCH_REQUIRE_GPIOLIB + select AUTO_ZRELADDR select ARM_NVIC select CLKSRC_OF select COMMON_CLK