Skip to content

Commit c05263d

Browse files
committed
Merge tag 'gpio-fixes-for-v5.11' of git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux
Pull gpio fixes from Bartosz Golaszewski: "This is hopefully the last batch of fixes for this release cycle. We have a minor fix for a Kconfig regression as well as fixes for older bugs in gpio-ep93xx: - don't build gpio-mxs unconditionally with COMPILE_TEST enabled - fix two problems with interrupt handling in gpio-ep93xx" * tag 'gpio-fixes-for-v5.11' of git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux: gpio: ep93xx: Fix single irqchip with multi gpiochips gpio: ep93xx: fix BUG_ON port F usage gpio: mxs: GPIO_MXS should not default to y unconditionally
2 parents 291009f + 28dc10e commit c05263d

File tree

2 files changed

+120
-99
lines changed

2 files changed

+120
-99
lines changed

drivers/gpio/Kconfig

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -441,8 +441,9 @@ config GPIO_MXC
441441
select GENERIC_IRQ_CHIP
442442

443443
config GPIO_MXS
444-
def_bool y
444+
bool "Freescale MXS GPIO support" if COMPILE_TEST
445445
depends on ARCH_MXS || COMPILE_TEST
446+
default y if ARCH_MXS
446447
select GPIO_GENERIC
447448
select GENERIC_IRQ_CHIP
448449

0 commit comments

Comments
 (0)