nrfmin: depend on gnrc_netif instead of gnrc_netdev_default

`gnrc_netdev_default` is a pseudomodule, what this driver really wants
is gnrc_netif.
This commit is contained in:
Benjamin Valentin 2021-02-08 12:46:51 +01:00
parent b7b6beb65c
commit cc9c58aae3

View File

@ -2,7 +2,7 @@ MODULE = nrfmin
SRC = nrfmin.c
ifneq (,$(filter gnrc_netdev_default,$(USEMODULE)))
ifneq (,$(filter gnrc_netif,$(USEMODULE)))
SRC += nrfmin_gnrc.c
endif