Message ID | 20200130195525.4525-1-krzk@kernel.org (mailing list archive) |
---|---|
State | Mainlined |
Commit | e383e871ab54f073c2a798a9e0bde7f1d0528de8 |
Headers | show |
Series | [1/2] ARM: npcm: Bring back GPIOLIB support | expand |
Hello: The following patches were marked "accepted", because they were applied to soc/soc.git (refs/heads/for-next): Series: ARM: SoC contents for 5.6 Submitter: Olof Johansson <olof@lixom.net> Patchwork: https://patchwork.kernel.org/project/linux-soc/list/?series=238749 Patches: [GIT,PULL,1/5,v2] ARM: SoC platform updates [GIT,PULL,2/5,v2] ARM: Device-tree updates [GIT,PULL,3/5,v2] ARM: SoC-related driver updates [GIT,PULL,4/5,v2] ARM: SoC defconfig updates [GIT,PULL,5/5,v2] ARM: SoC: late updates Series: [1/2] ARM: npcm: Bring back GPIOLIB support Submitter: Krzysztof Kozlowski <krzk@kernel.org> Patchwork: https://patchwork.kernel.org/project/linux-soc/list/?series=235191 Patches: [1/2] ARM: npcm: Bring back GPIOLIB support [2/2] ARM: configs: Cleanup old Kconfig options Total patches: 7
Hello: This series was applied to soc/soc.git (refs/heads/for-next). On Thu, 30 Jan 2020 20:55:24 +0100 you wrote: > The CONFIG_ARCH_REQUIRE_GPIOLIB is gone since commit 65053e1a7743 > ("gpio: delete ARCH_[WANTS_OPTIONAL|REQUIRE]_GPIOLIB") and all platforms > should explicitly select GPIOLIB to have it. > > Cc: <stable@vger.kernel.org> > Fixes: 65053e1a7743 ("gpio: delete ARCH_[WANTS_OPTIONAL|REQUIRE]_GPIOLIB") > Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org> > > [...] Here is a summary with links: - [1/2] ARM: npcm: Bring back GPIOLIB support https://git.kernel.org/soc/soc/c/e383e871ab54f073c2a798a9e0bde7f1d0528de8 - [2/2] ARM: configs: Cleanup old Kconfig options https://git.kernel.org/soc/soc/c/3508aae9b5618aca727f07c183e25d09033a5b66 You are awesome, thank you!
diff --git a/arch/arm/mach-npcm/Kconfig b/arch/arm/mach-npcm/Kconfig index 880bc2a5cada..7f7002dc2b21 100644 --- a/arch/arm/mach-npcm/Kconfig +++ b/arch/arm/mach-npcm/Kconfig @@ -11,7 +11,7 @@ config ARCH_NPCM7XX depends on ARCH_MULTI_V7 select PINCTRL_NPCM7XX select NPCM7XX_TIMER - select ARCH_REQUIRE_GPIOLIB + select GPIOLIB select CACHE_L2X0 select ARM_GIC select HAVE_ARM_TWD if SMP
The CONFIG_ARCH_REQUIRE_GPIOLIB is gone since commit 65053e1a7743 ("gpio: delete ARCH_[WANTS_OPTIONAL|REQUIRE]_GPIOLIB") and all platforms should explicitly select GPIOLIB to have it. Cc: <stable@vger.kernel.org> Fixes: 65053e1a7743 ("gpio: delete ARCH_[WANTS_OPTIONAL|REQUIRE]_GPIOLIB") Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org> --- arch/arm/mach-npcm/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)