Skip to content

Commit 5e727d7

Browse files
KozhinovAlexandercfriedt
authored andcommitted
drivers: interrupt_controller: exti_stm32: rename to intc_gpio
rename intc_exti_stm32.c to intc_gpio_stm32.c rename EXTI_STM32 to GPIO_INTC_STM32 in Kconfig.stm32 update CMakeLists.txt Signed-off-by: Alexander Kozhinov <[email protected]>
1 parent 0351ff7 commit 5e727d7

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

drivers/interrupt_controller/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ zephyr_library_sources_ifdef(CONFIG_ARCV2_INTERRUPT_UNIT intc_arcv2_irq_unit.
66
zephyr_library_sources_ifdef(CONFIG_CAVS_ICTL intc_cavs.c)
77
zephyr_library_sources_ifdef(CONFIG_DW_ICTL intc_dw.c)
88
zephyr_library_sources_ifdef(CONFIG_DW_ICTL_ACE intc_dw_ace.c)
9-
zephyr_library_sources_ifdef(CONFIG_EXTI_STM32 intc_exti_stm32.c)
9+
zephyr_library_sources_ifdef(CONFIG_GPIO_INTC_STM32 intc_gpio_stm32.c)
1010
zephyr_library_sources_ifdef(CONFIG_GD32_EXTI intc_gd32_exti.c)
1111
zephyr_library_sources_ifdef(CONFIG_GIC_V1 intc_gic.c)
1212
zephyr_library_sources_ifdef(CONFIG_GIC_V2 intc_gic.c)

drivers/interrupt_controller/Kconfig.stm32

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55

66
if SOC_FAMILY_STM32
77

8-
config EXTI_STM32
9-
bool "External Interrupt/Event Controller (EXTI) Driver for STM32 family of MCUs"
8+
config GPIO_INTC_STM32
9+
bool "GPIO Interrupt/Event Controller (EXTI) Driver for STM32 family of MCUs"
1010
default y
1111
depends on DT_HAS_ST_STM32_EXTI_ENABLED
1212
help
13-
Enable EXTI driver for STM32 line of MCUs
13+
Enable GPIO interrupt controller driver for STM32 family of MCUs
1414

1515
config GPIO_INTC_STM32WB0
1616
bool "GPIO Interrupt Controller Driver for STM32WB0 series"

0 commit comments

Comments
 (0)