Message ID | 1599549126-17413-3-git-send-email-Anson.Huang@nxp.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | [V3,1/3] pinctrl: imx: Use function callbacks for SCU related functions | expand |
On Tue, Sep 8, 2020 at 9:20 AM Anson Huang <Anson.Huang@nxp.com> wrote: > # SPDX-License-Identifier: GPL-2.0-only > config PINCTRL_IMX > - bool > + tristate "IMX pinctrl core driver" > + depends on OF > select GENERIC_PINCTRL_GROUPS > select GENERIC_PINMUX_FUNCTIONS > select GENERIC_PINCONF I don't see why you need to make this option user-visible when it is already selected by the drivers that need it. Wouldn't it be enough to change the 'bool' to 'tristate' without adding a prompt? Arnd
> Subject: Re: [PATCH V3 3/3] pinctrl: imx: Support building i.MX pinctrl core > driver as module > > On Tue, Sep 8, 2020 at 9:20 AM Anson Huang <Anson.Huang@nxp.com> > wrote: > > > # SPDX-License-Identifier: GPL-2.0-only config PINCTRL_IMX > > - bool > > + tristate "IMX pinctrl core driver" > > + depends on OF > > select GENERIC_PINCTRL_GROUPS > > select GENERIC_PINMUX_FUNCTIONS > > select GENERIC_PINCONF > > I don't see why you need to make this option user-visible when it is already > selected by the drivers that need it. Wouldn't it be enough to change the 'bool' > to 'tristate' without adding a prompt? Make sense, so it is same for PINCTRL_IMX_SCU, right? Anson
On Tue, Sep 8, 2020 at 9:34 AM Anson Huang <anson.huang@nxp.com> wrote: > > Subject: Re: [PATCH V3 3/3] pinctrl: imx: Support building i.MX pinctrl core > > driver as module > > > > On Tue, Sep 8, 2020 at 9:20 AM Anson Huang <Anson.Huang@nxp.com> > > wrote: > > > > > # SPDX-License-Identifier: GPL-2.0-only config PINCTRL_IMX > > > - bool > > > + tristate "IMX pinctrl core driver" > > > + depends on OF > > > select GENERIC_PINCTRL_GROUPS > > > select GENERIC_PINMUX_FUNCTIONS > > > select GENERIC_PINCONF > > > > I don't see why you need to make this option user-visible when it is already > > selected by the drivers that need it. Wouldn't it be enough to change the 'bool' > > to 'tristate' without adding a prompt? > > Make sense, so it is same for PINCTRL_IMX_SCU, right? Yes, correct. I wasn't on Cc on the other two patches, so I missed that. Arnd
Hi, Arnd > Subject: Re: [PATCH V3 3/3] pinctrl: imx: Support building i.MX pinctrl core > driver as module > > On Tue, Sep 8, 2020 at 9:34 AM Anson Huang <anson.huang@nxp.com> > wrote: > > > Subject: Re: [PATCH V3 3/3] pinctrl: imx: Support building i.MX > > > pinctrl core driver as module > > > > > > On Tue, Sep 8, 2020 at 9:20 AM Anson Huang <Anson.Huang@nxp.com> > > > wrote: > > > > > > > # SPDX-License-Identifier: GPL-2.0-only config PINCTRL_IMX > > > > - bool > > > > + tristate "IMX pinctrl core driver" > > > > + depends on OF > > > > select GENERIC_PINCTRL_GROUPS > > > > select GENERIC_PINMUX_FUNCTIONS > > > > select GENERIC_PINCONF > > > > > > I don't see why you need to make this option user-visible when it is > > > already selected by the drivers that need it. Wouldn't it be enough to > change the 'bool' > > > to 'tristate' without adding a prompt? > > > > Make sense, so it is same for PINCTRL_IMX_SCU, right? > > Yes, correct. > > I wasn't on Cc on the other two patches, so I missed that. Sorry, I missed to add you to the list as I just use the list from get_maintainer script, will add you in V4. Since most of the major comments are addressed, I will send V4 soon. Thanks, Anson
diff --git a/drivers/pinctrl/freescale/Kconfig b/drivers/pinctrl/freescale/Kconfig index 452c499..0058d3a 100644 --- a/drivers/pinctrl/freescale/Kconfig +++ b/drivers/pinctrl/freescale/Kconfig @@ -1,6 +1,7 @@ # SPDX-License-Identifier: GPL-2.0-only config PINCTRL_IMX - bool + tristate "IMX pinctrl core driver" + depends on OF select GENERIC_PINCTRL_GROUPS select GENERIC_PINMUX_FUNCTIONS select GENERIC_PINCONF diff --git a/drivers/pinctrl/freescale/pinctrl-imx.c b/drivers/pinctrl/freescale/pinctrl-imx.c index b80c450..daf28bc 100644 --- a/drivers/pinctrl/freescale/pinctrl-imx.c +++ b/drivers/pinctrl/freescale/pinctrl-imx.c @@ -11,6 +11,7 @@ #include <linux/init.h> #include <linux/io.h> #include <linux/mfd/syscon.h> +#include <linux/module.h> #include <linux/of.h> #include <linux/of_device.h> #include <linux/of_address.h> @@ -898,3 +899,7 @@ const struct dev_pm_ops imx_pinctrl_pm_ops = { imx_pinctrl_resume) }; EXPORT_SYMBOL_GPL(imx_pinctrl_pm_ops); + +MODULE_AUTHOR("Dong Aisheng <aisheng.dong@nxp.com>"); +MODULE_DESCRIPTION("NXP i.MX common pinctrl driver"); +MODULE_LICENSE("GPL v2");