This is an automated email from the ASF dual-hosted git repository. acassis pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/nuttx.git
commit 3271a441388280f60de37df6ef9dc1fb9fe7e573 Author: raiden00pl <[email protected]> AuthorDate: Thu Jun 11 20:14:47 2026 +0200 boards/nrf91/thingy91: ARCH_HAVE_IRQBUTTONS support select ARCH_HAVE_IRQBUTTONS so ARCH_IRQBUTTONS can be enabled. Signed-off-by: raiden00pl <[email protected]> --- arch/arm/src/nrf91/nrf91_gpiote.c | 4 ++-- boards/Kconfig | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/arch/arm/src/nrf91/nrf91_gpiote.c b/arch/arm/src/nrf91/nrf91_gpiote.c index 6f692b9efcf..36fb06b5e3c 100644 --- a/arch/arm/src/nrf91/nrf91_gpiote.c +++ b/arch/arm/src/nrf91/nrf91_gpiote.c @@ -50,8 +50,8 @@ #define GPIOTE_CHANNELS 8 /* Use the GPIOTE instance (and its interrupt) for the build's security - * domain: GPIOTE1 when non-secure, GPIOTE0 when secure. The register base is - * selected in hardware/nrf91_gpiote.h. + * domain: GPIOTE1 when non-secure, GPIOTE0 when secure. The register base + * is selected in hardware/nrf91_gpiote.h. */ #ifdef CONFIG_ARCH_TRUSTZONE_NONSECURE diff --git a/boards/Kconfig b/boards/Kconfig index 2a6a401dd15..5196f18cbc2 100644 --- a/boards/Kconfig +++ b/boards/Kconfig @@ -1455,6 +1455,7 @@ config ARCH_BOARD_THINGY91 bool "Nordic Thingy:91 cellular IoT prototyping platform - nRF9160" depends on ARCH_CHIP_NRF91 select ARCH_HAVE_BUTTONS + select ARCH_HAVE_IRQBUTTONS ---help--- This option selects the Thingy:91 cellular IoT prototyping platform - nRF9160 chip
