Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Kconfig/ieee802154: fix typo in HAL selector and add missing radios #18430

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cpu/cc2538/radio/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ menuconfig MODULE_CC2538_RF
default (MODULE_NETDEV_DEFAULT && HAVE_CC2538_RF)
depends on TEST_KCONFIG
depends on CPU_FAM_CC2538
select HAVE_IEE802154_RADIO_HAL_INTERFACE
select HAVE_IEEE802154_RADIO_HAL_INTERFACE

if MODULE_CC2538_RF

Expand Down
2 changes: 1 addition & 1 deletion cpu/native/socket_zep/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ menuconfig MODULE_SOCKET_ZEP
select MODULE_CHECKSUM
select MODULE_RANDOM
select MODULE_IEEE802154
select HAVE_IEE802154_RADIO_HAL_INTERFACE
select HAVE_IEEE802154_RADIO_HAL_INTERFACE
help
UDP socket-based IEEE 802.15.4 device over ZEP

Expand Down
1 change: 1 addition & 0 deletions cpu/nrf5x_common/radio/Kconfig.nrf5x
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ config MODULE_NRF802154
select MODULE_PERIPH_TIMER
select MODULE_IEEE802154
select HAVE_NON_NETDEV_INTERFACE
select HAVE_IEEE802154_RADIO_HAL_INTERFACE

config MODULE_NRFBLE
bool "Bluetooth low energy radio driver"
Expand Down
2 changes: 1 addition & 1 deletion drivers/netdev/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ config HAVE_NON_NETDEV_INTERFACE
help
Indicates that a non-netdev interface is exposed by selected drivers.

config HAVE_IEE802154_RADIO_HAL_INTERFACE
config HAVE_IEEE802154_RADIO_HAL_INTERFACE
bool
select HAVE_NON_NETDEV_INTERFACE
help
Expand Down
2 changes: 1 addition & 1 deletion drivers/netdev_ieee802154_submac/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ config MODULE_NETDEV_IEEE802154_SUBMAC
bool
depends on TEST_KCONFIG
depends on MODULE_NETDEV
default y if HAVE_IEE802154_RADIO_HAL_INTERFACE
default y if HAVE_IEEE802154_RADIO_HAL_INTERFACE
select MODULE_NETDEV_IEEE802154
select MODULE_IEEE802154
select MODULE_IEEE802154_SUBMAC
Expand Down