From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753437AbbJOVre (ORCPT ); Thu, 15 Oct 2015 17:47:34 -0400 Received: from mail-lf0-f46.google.com ([209.85.215.46]:36832 "EHLO mail-lf0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751752AbbJOVrU (ORCPT ); Thu, 15 Oct 2015 17:47:20 -0400 Message-ID: <56201EE5.100@gmail.com> Date: Thu, 15 Oct 2015 23:47:17 +0200 From: Sebastian Hesselbarth User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.8.0 To: Antoine Tenart , linus.walleij@linaro.org CC: jszhang@marvell.com, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH 1/5] pinctrl: berlin: select the pinctrl driver according to the SoC used References: <1444771901-24460-1-git-send-email-antoine.tenart@free-electrons.com> <1444771901-24460-2-git-send-email-antoine.tenart@free-electrons.com> In-Reply-To: <1444771901-24460-2-git-send-email-antoine.tenart@free-electrons.com> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 13.10.2015 23:31, Antoine Tenart wrote: > This patch prepares to remove the pinctrl driver selection from the > mach-berlin Kconfig. To do so, bool is replaced by def_bool. > > Signed-off-by: Antoine Tenart Acked-by: Sebastian Hesselbarth > --- > drivers/pinctrl/berlin/Kconfig | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/drivers/pinctrl/berlin/Kconfig b/drivers/pinctrl/berlin/Kconfig > index 740a13675fd1..7eb4bb615867 100644 > --- a/drivers/pinctrl/berlin/Kconfig > +++ b/drivers/pinctrl/berlin/Kconfig > @@ -6,15 +6,15 @@ config PINCTRL_BERLIN > select REGMAP_MMIO > > config PINCTRL_BERLIN_BG2 > - bool > + def_bool MACH_BERLIN_BG2 > select PINCTRL_BERLIN > > config PINCTRL_BERLIN_BG2CD > - bool > + def_bool MACH_BERLIN_BG2CD > select PINCTRL_BERLIN > > config PINCTRL_BERLIN_BG2Q > - bool > + def_bool MACH_BERLIN_BG2Q > select PINCTRL_BERLIN > > config PINCTRL_BERLIN_BG4CT >