Networking: Add registration support for integrated ieee80211 wireless drivers. Rename CONFIG_IEEE802154 to CONFIG_WIRELESS_IEEE8021514 following the convention of including the location of the configuration variable as a part of its name.

This commit is contained in:
Gregory Nutt
2017-03-12 12:50:41 -06:00
parent 939ea7461b
commit 430b52c977
4 changed files with 23 additions and 8 deletions
+2 -2
View File
@@ -3,12 +3,12 @@
# see the file kconfig-language.txt in the NuttX tools repository.
#
config IEEE802154
config WIRELESS_IEEE802154
bool "IEEE 802.15.4 Wireless Support"
default n
depends on EXPERIMENTAL
---help---
Enables support for the IEEE 802.14.5Wireless library.
Enables support for the IEEE 802.14.5 Wireless library.
if IEEE802154
+2 -2
View File
@@ -33,7 +33,7 @@
#
############################################################################
ifeq ($(CONFIG_IEEE802154),y)
ifeq ($(CONFIG_WIRELESS_IEEE802154),y)
# Include IEEE 802.15.4 support
@@ -43,4 +43,4 @@ DEPPATH += --dep-path wireless/ieee802154
VPATH += :wireless/ieee802154
CFLAGS += ${shell $(INCDIR) $(INCDIROPT) "$(CC)" $(TOPDIR)$(DELIM)wireless$(DELIM)ieee802154}
endif # CONFIG_IEEE802154
endif # CONFIG_WIRELESS_IEEE802154