From e48f957a52826c6b3eaf514381ecdf54b4dfc538 Mon Sep 17 00:00:00 2001 From: Leandro Lanzieri Date: Wed, 23 Mar 2022 17:38:03 +0100 Subject: [PATCH] cpu/nrf52/radio: fix confirm_op info cast --- cpu/nrf52/radio/nrf802154/nrf802154_radio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpu/nrf52/radio/nrf802154/nrf802154_radio.c b/cpu/nrf52/radio/nrf802154/nrf802154_radio.c index 1a97973bcb..4eb926a727 100644 --- a/cpu/nrf52/radio/nrf802154/nrf802154_radio.c +++ b/cpu/nrf52/radio/nrf802154/nrf802154_radio.c @@ -253,7 +253,7 @@ static int _confirm_op(ieee802154_dev_t *dev, ieee802154_hal_op_t op, void *ctx) { (void) dev; bool eagain; - ieee802154_tx_info_t *info = NULL; + ieee802154_tx_info_t *info = ctx; int state = _state; bool enable_shorts = false; int radio_state = NRF_RADIO->STATE;