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:
Markus Becker 2020-05-26 10:48:53 +02:00 committed by Ioannis Glaropoulos
commit f253096a9c
2 changed files with 3 additions and 2 deletions

View file

@ -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");