1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

cpu/stm32: Fix periph_gpio_ll_irq

Fixing a high impact typo that broke GPIO LL IRQ support on a bunch
of STM32 families.
This commit is contained in:
Marian Buschsieweke 2023-04-04 08:36:18 +02:00
parent 985a38cd09
commit 8bfd74d004
No known key found for this signature in database
GPG Key ID: CB8E3238CE715A94

View File

@ -84,10 +84,8 @@
#ifdef RCC_APB2ENR_SYSCFGCOMPEN
# define SYSFG_CLOCK APB2
# define SYSFG_ENABLE_MASK RCC_APB2ENR_SYSCFGCOMPEN
#endif
#ifdef RCC_APBENR2_SYSCFGEN
# define SYSFG_ENABLE_MASK RCC_APBENR2_SYSCFGEN
#elif defined(RCC_APB2ENR_SYSCFGEN)
# define SYSFG_ENABLE_MASK RCC_APB2ENR_SYSCFGEN
# ifdef APB12
# define SYSFG_CLOCK APB12
# else