From patchwork Wed Jul 15 08:16:22 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masahiro Yamada X-Patchwork-Id: 495514 X-Patchwork-Delegate: sjg@chromium.org Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from theia.denx.de (theia.denx.de [85.214.87.163]) by ozlabs.org (Postfix) with ESMTP id 003D81401DA for ; Wed, 15 Jul 2015 18:19:26 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id C5DB84B6B3; Wed, 15 Jul 2015 10:18:06 +0200 (CEST) Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id BrKFyftqWIhv; Wed, 15 Jul 2015 10:18:06 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id B19304B686; Wed, 15 Jul 2015 10:17:49 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id D654F4B62A for ; Wed, 15 Jul 2015 10:17:32 +0200 (CEST) Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id InMdTb-SAeO1 for ; Wed, 15 Jul 2015 10:17:32 +0200 (CEST) X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 NOT_IN_BL_NJABL=-1.5 (only DNSBL check requested) Received: from conuserg012-v.nifty.com (conuserg012.nifty.com [202.248.44.38]) by theia.denx.de (Postfix) with ESMTPS id 9277C4B61F for ; Wed, 15 Jul 2015 10:17:31 +0200 (CEST) Received: from beagle.diag.org (KD106137178180.au-net.ne.jp [106.137.178.180]) (authenticated) by conuserg012-v.nifty.com with ESMTP id t6F8GilR019682; Wed, 15 Jul 2015 17:17:06 +0900 X-Nifty-SrcIP: [106.137.178.180] From: Masahiro Yamada To: u-boot@lists.denx.de Date: Wed, 15 Jul 2015 17:16:22 +0900 Message-Id: <1436948198-17236-8-git-send-email-yamada.masahiro@socionext.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1436948198-17236-1-git-send-email-yamada.masahiro@socionext.com> References: <1436948198-17236-1-git-send-email-yamada.masahiro@socionext.com> Cc: Tom Rini Subject: [U-Boot] [RFC PATCH 7/7] ARM: select pinctrl drivers from Kconfig X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.15 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" The pinctrl driver is tightly integrated with the each SoC, so it is reasonable to select it from Kconfig. Signed-off-by: Masahiro Yamada --- arch/arm/mach-uniphier/Kconfig | 3 +++ 1 file changed, 3 insertions(+) diff --git a/arch/arm/mach-uniphier/Kconfig b/arch/arm/mach-uniphier/Kconfig index 3820bca..57e1c42 100644 --- a/arch/arm/mach-uniphier/Kconfig +++ b/arch/arm/mach-uniphier/Kconfig @@ -17,6 +17,7 @@ config MACH_PH1_SLD3 config MACH_PH1_LD4 bool "PH1-LD4" + select PINCTRL_UNIPHIER_PH1_LD4 config MACH_PH1_PRO4TV bool "PH1-Pro4TV" @@ -25,9 +26,11 @@ config MACH_PH1_PRO4TV config MACH_PH1_PRO4 bool "PH1-Pro4" select UNIPHIER_SMP + select PINCTRL_UNIPHIER_PH1_PRO4 config MACH_PH1_SLD8 bool "PH1-sLD8" + select PINCTRL_UNIPHIER_PH1_SLD8 config MACH_PH1_PRO5 bool "PH1-Pro5"