net: ieee802154: Align thread names of radio drivers
The NRF5 and RF2XX drivers are using different thread names compared to the other 802.15.4 drivers. Aligned the thread names to <chip>_rx. Signed-off-by: Markus Becker <markus.becker@tridonic.com>
This commit is contained in:
parent
f60c9bd0a5
commit
f253096a9c
2 changed files with 3 additions and 2 deletions
|
@ -472,7 +472,7 @@ static int nrf5_init(struct device *dev)
|
|||
nrf5_rx_thread, dev, NULL, NULL,
|
||||
K_PRIO_COOP(2), 0, K_NO_WAIT);
|
||||
|
||||
k_thread_name_set(&nrf5_radio->rx_thread, "802154 RX");
|
||||
k_thread_name_set(&nrf5_radio->rx_thread, "nrf5_rx");
|
||||
|
||||
LOG_INF("nRF5 802154 radio initialized");
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue