wireless/ieee802154: Fixes build and configuration setup

This commit is contained in:
Anthony Merlino 2017-03-24 11:06:59 -04:00
parent f5926bd330
commit a702d6b638
2 changed files with 4 additions and 4 deletions

View File

@ -10,12 +10,12 @@ config WIRELESS_IEEE802154
---help---
Enables support for the IEEE 802.14.5 Wireless library.
if IEEE802154
if WIRELESS_IEEE802154
config IEEE802154_MAC
bool "Generic Media Access Control layer for 802.15.4 radios"
default n
depends on IEEE802154
depends on WIRELESS_IEEE802154
---help---
Enables a Media Access Controller for any IEEE802.15.4 radio
device. This in turn can be used by higher layer entities
@ -25,7 +25,7 @@ config IEEE802154_MAC
config IEEE802154_DEV
bool "Debug character driver for ieee802.15.4 radio interfaces"
default n
depends on IEEE802154
depends on WIRELESS_IEEE802154
---help---
Enables a device driver to expose ieee802.15.4 radio controls
to user space as IOCTLs.

View File

@ -45,7 +45,7 @@ CSRCS += ieee802154/mac802154.c
endif
ifeq ($(CONFIG_IEEE802154_DEV),y)
CSRCS += ieee802154/ieee802154_device.c
CSRCS += ieee802154/radio802154_device.c
endif
DEPPATH += --dep-path wireless/ieee802154