Message ID | 20201110215619.86076-1-john.stultz@linaro.org (mailing list archive) |
---|---|
State | Accepted |
Commit | 2a984219b53422261cd90feb8a1bb5c1583be3fb |
Headers | show |
Series | [v2] pinctrl: qcom: Fix msm8953 Kconfig entry to depend on, not select PINCTRL_MSM | expand |
On Tue 10 Nov 15:56 CST 2020, John Stultz wrote: > One fixup following my patch commit be117ca32261 ("pinctrl: > qcom: Kconfig: Rework PINCTRL_MSM to be a depenency rather then > a selected config") being queued in LinusW's tree, as a new > config entry was added for the msm8953 that also needs the > change. > > Applies to LinusW's pinctrl devel tree. > > Cc: Andy Gross <agross@kernel.org> > Cc: Prasad Sodagudi <psodagud@codeaurora.org> > Cc: Vladimir Lypak <junak.pub@gmail.com> > Cc: Bjorn Andersson <bjorn.andersson@linaro.org> > Cc: Linus Walleij <linus.walleij@linaro.org> > Cc: linux-arm-msm@vger.kernel.org > Cc: linux-gpio@vger.kernel.org > Signed-off-by: John Stultz <john.stultz@linaro.org> > Change-Id: I9e8e83b1ea57aff338074be9174fce53cef29eff Linus, please drop the change-id as you apply this. Reviewed-by: Bjorn Andersson <bjorn.andersson@linaro.org> Regards, Bjorn > --- > v2: > * Fix flipped numbers in the soc name, pointed out by > Jeffrey Hugo > --- > drivers/pinctrl/qcom/Kconfig | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/pinctrl/qcom/Kconfig b/drivers/pinctrl/qcom/Kconfig > index 8bdf878fe970c..cf56e029cd9c7 100644 > --- a/drivers/pinctrl/qcom/Kconfig > +++ b/drivers/pinctrl/qcom/Kconfig > @@ -115,7 +115,7 @@ config PINCTRL_MSM8916 > config PINCTRL_MSM8953 > tristate "Qualcomm 8953 pin controller driver" > depends on GPIOLIB && OF > - select PINCTRL_MSM > + depends on PINCTRL_MSM > help > This is the pinctrl, pinmux, pinconf and gpiolib driver for the > Qualcomm TLMM block found on the Qualcomm MSM8953 platform. > -- > 2.17.1 >
On Tue, Nov 10, 2020 at 10:56 PM John Stultz <john.stultz@linaro.org> wrote: > One fixup following my patch commit be117ca32261 ("pinctrl: > qcom: Kconfig: Rework PINCTRL_MSM to be a depenency rather then > a selected config") being queued in LinusW's tree, as a new > config entry was added for the msm8953 that also needs the > change. > > Applies to LinusW's pinctrl devel tree. > > Cc: Andy Gross <agross@kernel.org> > Cc: Prasad Sodagudi <psodagud@codeaurora.org> > Cc: Vladimir Lypak <junak.pub@gmail.com> > Cc: Bjorn Andersson <bjorn.andersson@linaro.org> > Cc: Linus Walleij <linus.walleij@linaro.org> > Cc: linux-arm-msm@vger.kernel.org > Cc: linux-gpio@vger.kernel.org > Signed-off-by: John Stultz <john.stultz@linaro.org> > Change-Id: I9e8e83b1ea57aff338074be9174fce53cef29eff > --- > v2: > * Fix flipped numbers in the soc name, pointed out by > Jeffrey Hugo Patch applied, for some reason this got lost in my inbox. Yours, Linus Walleij
Hello: This patch was applied to qcom/linux.git (refs/heads/for-next): On Tue, 10 Nov 2020 21:56:19 +0000 you wrote: > One fixup following my patch commit be117ca32261 ("pinctrl: > qcom: Kconfig: Rework PINCTRL_MSM to be a depenency rather then > a selected config") being queued in LinusW's tree, as a new > config entry was added for the msm8953 that also needs the > change. > > Applies to LinusW's pinctrl devel tree. > > [...] Here is the summary with links: - [v2] pinctrl: qcom: Fix msm8953 Kconfig entry to depend on, not select PINCTRL_MSM https://git.kernel.org/qcom/c/2a984219b534 You are awesome, thank you! -- Deet-doot-dot, I am a bot. https://korg.docs.kernel.org/patchwork/pwbot.html
diff --git a/drivers/pinctrl/qcom/Kconfig b/drivers/pinctrl/qcom/Kconfig index 8bdf878fe970c..cf56e029cd9c7 100644 --- a/drivers/pinctrl/qcom/Kconfig +++ b/drivers/pinctrl/qcom/Kconfig @@ -115,7 +115,7 @@ config PINCTRL_MSM8916 config PINCTRL_MSM8953 tristate "Qualcomm 8953 pin controller driver" depends on GPIOLIB && OF - select PINCTRL_MSM + depends on PINCTRL_MSM help This is the pinctrl, pinmux, pinconf and gpiolib driver for the Qualcomm TLMM block found on the Qualcomm MSM8953 platform.
One fixup following my patch commit be117ca32261 ("pinctrl: qcom: Kconfig: Rework PINCTRL_MSM to be a depenency rather then a selected config") being queued in LinusW's tree, as a new config entry was added for the msm8953 that also needs the change. Applies to LinusW's pinctrl devel tree. Cc: Andy Gross <agross@kernel.org> Cc: Prasad Sodagudi <psodagud@codeaurora.org> Cc: Vladimir Lypak <junak.pub@gmail.com> Cc: Bjorn Andersson <bjorn.andersson@linaro.org> Cc: Linus Walleij <linus.walleij@linaro.org> Cc: linux-arm-msm@vger.kernel.org Cc: linux-gpio@vger.kernel.org Signed-off-by: John Stultz <john.stultz@linaro.org> Change-Id: I9e8e83b1ea57aff338074be9174fce53cef29eff --- v2: * Fix flipped numbers in the soc name, pointed out by Jeffrey Hugo --- drivers/pinctrl/qcom/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)