From patchwork Sat Jul 13 20:09:51 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paul Bolle X-Patchwork-Id: 2827191 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 16324C0AB2 for ; Sat, 13 Jul 2013 20:10:52 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 4FEA22011D for ; Sat, 13 Jul 2013 20:10:51 +0000 (UTC) Received: from casper.infradead.org (casper.infradead.org [85.118.1.10]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 46FE320117 for ; Sat, 13 Jul 2013 20:10:49 +0000 (UTC) Received: from merlin.infradead.org ([2001:4978:20e::2]) by casper.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1Uy69S-0000ff-Dj; Sat, 13 Jul 2013 20:10:42 +0000 Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.80.1 #2 (Red Hat Linux)) id 1Uy69Q-0001e5-1f; Sat, 13 Jul 2013 20:10:40 +0000 Received: from cpsmtpb-ews10.kpnxchange.com ([213.75.39.15]) by merlin.infradead.org with esmtp (Exim 4.80.1 #2 (Red Hat Linux)) id 1Uy69M-0001dH-7g for linux-arm-kernel@lists.infradead.org; Sat, 13 Jul 2013 20:10:38 +0000 Received: from cpsps-ews02.kpnxchange.com ([10.94.84.169]) by cpsmtpb-ews10.kpnxchange.com with Microsoft SMTPSVC(7.5.7601.17514); Sat, 13 Jul 2013 22:09:51 +0200 Received: from CPSMTPM-TLF104.kpnxchange.com ([195.121.3.7]) by cpsps-ews02.kpnxchange.com with Microsoft SMTPSVC(7.5.7601.17514); Sat, 13 Jul 2013 22:09:51 +0200 Received: from [192.168.1.103] ([212.123.139.93]) by CPSMTPM-TLF104.kpnxchange.com with Microsoft SMTPSVC(7.5.7601.17514); Sat, 13 Jul 2013 22:09:51 +0200 Message-ID: <1373746191.1359.37.camel@x61.thuisdomein> Subject: [PATCH] ARM: multiplatform: remove reference to ARCH_MULTI_V4 From: Paul Bolle To: Russell King Date: Sat, 13 Jul 2013 22:09:51 +0200 X-Mailer: Evolution 3.6.4 (3.6.4-3.fc18) Mime-Version: 1.0 X-OriginalArrivalTime: 13 Jul 2013 20:09:51.0790 (UTC) FILETIME=[EEF9DCE0:01CE8004] X-RcptDomain: lists.infradead.org X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20130713_161036_364808_AD841240 X-CRM114-Status: UNSURE ( 8.75 ) X-CRM114-Notice: Please train this message. X-Spam-Score: -1.9 (-) Cc: linux-arm-kernel@lists.infradead.org, Arnd Bergmann , linux-kernel@vger.kernel.org X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org X-Spam-Status: No, score=-4.2 required=5.0 tests=BAYES_00,FREEMAIL_FROM, RCVD_IN_DNSWL_MED, T_RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP The Kconfig symbol ARCH_MULTI_V4 was removed in commit 24e860fbfd ("ARM: multiplatform: always pick one CPU type"). Remove the last reference to it too. Signed-off-by: Paul Bolle --- 0) Untested. 1) Commit 24e860fbfd is silent on the reason to drop ARCH_MULTI_V4. And the ARM section of the Kconfig files is rather complicated for people, like me, that aren't familiar with the way the ARM universe is divided in architectures, machines, platforms, etc. That makes it hard to say whether ARCH_MULTI_V4 was dropped on purpose or by accident. arch/arm/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index 0ac9be6..0746bc8 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig @@ -912,7 +912,7 @@ config ARCH_MULTI_V6_V7 bool config ARCH_MULTI_CPU_AUTO - def_bool !(ARCH_MULTI_V4 || ARCH_MULTI_V4T || ARCH_MULTI_V6_V7) + def_bool !(ARCH_MULTI_V4T || ARCH_MULTI_V6_V7) select ARCH_MULTI_V5 endmenu