From patchwork Fri Mar 17 19:41:03 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Philipp Tomsich X-Patchwork-Id: 740499 X-Patchwork-Delegate: sjg@chromium.org Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.denx.de (dione.denx.de [81.169.180.215]) by ozlabs.org (Postfix) with ESMTP id 3vlG1J3ddQz9rxl for ; Sat, 18 Mar 2017 06:41:24 +1100 (AEDT) Received: by lists.denx.de (Postfix, from userid 105) id 487ECC21CB8; Fri, 17 Mar 2017 19:41:23 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on lists.denx.de X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=none autolearn=unavailable autolearn_force=no version=3.4.0 Received: from lists.denx.de (localhost [IPv6:::1]) by lists.denx.de (Postfix) with ESMTP id 58B28C21C26; Fri, 17 Mar 2017 19:41:18 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id 8238EC21C28; Fri, 17 Mar 2017 19:41:16 +0000 (UTC) Received: from mail.theobroma-systems.com (vegas.theobroma-systems.com [144.76.126.164]) by lists.denx.de (Postfix) with ESMTPS id 95294C21BE5 for ; Fri, 17 Mar 2017 19:41:12 +0000 (UTC) Received: from [86.59.122.178] (port=51771 helo=android.lan) by mail.theobroma-systems.com with esmtpsa (TLS1.2:DHE_RSA_AES_256_CBC_SHA256:256) (Exim 4.80) (envelope-from ) id 1coxkL-0006Bj-W2; Fri, 17 Mar 2017 20:41:10 +0100 From: Philipp Tomsich To: u-boot@lists.denx.de Date: Fri, 17 Mar 2017 20:41:03 +0100 Message-Id: <1489779664-20234-1-git-send-email-philipp.tomsich@theobroma-systems.com> X-Mailer: git-send-email 1.9.1 Cc: Wills Wang , Klaus Goger , Philipp Tomsich Subject: [U-Boot] [PATCH 1/2] rockchip: pinctrl: use per-SoC option names for Kconfig X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.18 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 config options for pinctrl on the RK3188, RK3288, RK3328 and RK3399 previously showed up in menuconfig with the generic string descriptor "Rockchip pin control driver" requiring one to look through the help/full description to identify which chip each menu entry was for. This change renames each option with the chip-name in the description string to make it easy to identify the configuration options in menuconfig. Signed-off-by: Philipp Tomsich Reviewed-by: Heiko Stuebner Reviewed-by: Simon Glass --- drivers/pinctrl/Kconfig | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/pinctrl/Kconfig b/drivers/pinctrl/Kconfig index afdc252..6181ec6 100644 --- a/drivers/pinctrl/Kconfig +++ b/drivers/pinctrl/Kconfig @@ -133,7 +133,7 @@ config ROCKCHIP_RK3036_PINCTRL function. config ROCKCHIP_RK3188_PINCTRL - bool "Rockchip pin control driver" + bool "Rockchip rk3188 pin control driver" depends on DM help Support pin multiplexing control on Rockchip rk3188 SoCs. The driver @@ -142,7 +142,7 @@ config ROCKCHIP_RK3188_PINCTRL function. config ROCKCHIP_RK3288_PINCTRL - bool "Rockchip pin control driver" + bool "Rockchip rk3288 pin control driver" depends on DM help Support pin multiplexing control on Rockchip rk3288 SoCs. The driver @@ -158,7 +158,7 @@ config PINCTRL_AT91PIO4 controller which is available on SAMA5D2 SoC. config ROCKCHIP_RK3328_PINCTRL - bool "Rockchip pin control driver" + bool "Rockchip rk3328 pin control driver" depends on DM help Support pin multiplexing control on Rockchip rk3328 SoCs. The driver @@ -167,7 +167,7 @@ config ROCKCHIP_RK3328_PINCTRL function. config ROCKCHIP_RK3399_PINCTRL - bool "Rockchip pin control driver" + bool "Rockchip rk3399 pin control driver" depends on DM help Support pin multiplexing control on Rockchip rk3399 SoCs. The driver