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

drivers: Only select periph_gpio_ll_irq_unmask if needed

This commit is contained in:
MrKevinWeiss 2022-08-11 09:35:18 +02:00
parent ee074e4464
commit 606402e848
No known key found for this signature in database
GPG Key ID: 4B69974722CBEEAE

View File

@ -1,2 +1,4 @@
# Always use periph_gpio_irq_unmask, if available
FEATURES_OPTIONAL += periph_gpio_ll_irq_unmask
ifneq (,$(filter periph_gpio_ll%,$(USEMODULE)))
FEATURES_OPTIONAL += periph_gpio_ll_irq_unmask
endif