1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

drivers/nrf802154: fix variable initialization

This commit is contained in:
Jose Alamos 2022-06-29 17:32:26 +02:00
parent a1ee44e114
commit 5a27241e22
No known key found for this signature in database
GPG Key ID: F483EB800EF89DD9

View File

@ -197,7 +197,7 @@ static int _request_op(ieee802154_dev_t *dev, ieee802154_hal_op_t op, void *ctx)
(void) dev;
int res = -EBUSY;
int state;
int state = STATE_IDLE;
switch (op) {
case IEEE802154_HAL_OP_TRANSMIT: