1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-17 05:12:57 +01:00

boards/feather-m0: don't check for gnrc_netdev_default

`gnrc_netdev_default` will pull in `netdev_default`, so no need to
check for both here.
This commit is contained in:
Benjamin Valentin 2020-06-27 16:47:41 +02:00
parent 18bbf1ae2c
commit e3c362e6ab

View File

@ -3,7 +3,7 @@ ifneq (,$(filter saul_default,$(USEMODULE)))
endif
ifneq (,$(filter feather-m0-wifi,$(USEMODULE)))
ifneq (,$(filter gnrc_netdev_default netdev_default,$(USEMODULE)))
ifneq (,$(filter netdev_default,$(USEMODULE)))
USEMODULE += atwinc15x0
endif
endif