From patchwork Wed Jun 1 19:06:37 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alexander Shiyan X-Patchwork-Id: 9147997 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 53A9860467 for ; Wed, 1 Jun 2016 19:08:42 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 444B91FFBD for ; Wed, 1 Jun 2016 19:08:42 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 38CD026E39; Wed, 1 Jun 2016 19:08:42 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-4.1 required=2.0 tests=BAYES_00,DKIM_SIGNED, FREEMAIL_FROM, RCVD_IN_DNSWL_MED, T_DKIM_INVALID autolearn=ham version=3.3.1 Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.9]) (using TLSv1.2 with cipher AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.wl.linuxfoundation.org (Postfix) with ESMTPS id 2339F1FFBD for ; Wed, 1 Jun 2016 19:08:41 +0000 (UTC) Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.80.1 #2 (Red Hat Linux)) id 1b8BTy-0002mf-Oo; Wed, 01 Jun 2016 19:07:10 +0000 Received: from smtp24.mail.ru ([94.100.181.179]) by bombadil.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1b8BTu-0002GK-Dk for linux-arm-kernel@lists.infradead.org; Wed, 01 Jun 2016 19:07:08 +0000 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=mail.ru; s=mail2; h=Message-Id:Date:Subject:Cc:To:From; bh=L7/Rxjtn6lCA2VLpts2f40z2jz1C8JhIXE3MOjYSWrk=; b=eDwfQoS9DwI1e7eOnN9tzeONBcNSbyV2VL5fX98BDYzFImlMSQZ4PKbW2blCndE3b1Isv118sPNg/lc5pBU3WbQBcSDWJGrnzBu8xbmksjLnv2SMaaReaJzlD2Yob7jTV3LMaTqf8WCX5qwuRg6/iFYn4614HvsLdc9HEUqKC+8=; Received: from [5.18.96.7] (port=55056 helo=shc.zet) by smtp24.mail.ru with esmtpa (envelope-from ) id 1b8BTW-0003fx-JM; Wed, 01 Jun 2016 22:06:42 +0300 From: Alexander Shiyan To: bcm-kernel-feedback-list@broadcom.com Subject: [PATCH] ARM: nspire: Fix Kconfig dependency Date: Wed, 1 Jun 2016 22:06:37 +0300 Message-Id: <1464807997-3804-1-git-send-email-shc_work@mail.ru> X-Mailer: git-send-email 2.4.9 X-Mras: OK X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20160601_120706_978532_5BDCE282 X-CRM114-Status: GOOD ( 10.01 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Alexander Shiyan , linux-arm-kernel@lists.infradead.org MIME-Version: 1.0 Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org X-Virus-Scanned: ClamAV using ClamSMTP ARM926T-based machine should depend on the ARCH_MULTI_V5 option. The ARCH_MULTI_V4_V5 is selected automatically by basic ARM configuration. Signed-off-by: Alexander Shiyan --- arch/arm/mach-nspire/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/mach-nspire/Kconfig b/arch/arm/mach-nspire/Kconfig index bc41f26..a22e99c6 100644 --- a/arch/arm/mach-nspire/Kconfig +++ b/arch/arm/mach-nspire/Kconfig @@ -1,6 +1,6 @@ config ARCH_NSPIRE bool "TI-NSPIRE based" - depends on ARCH_MULTI_V4_V5 + depends on ARCH_MULTI_V5 depends on MMU select CPU_ARM926T select GENERIC_IRQ_CHIP