@@ -335,7 +335,7 @@ static int rylr_config(const struct device *dev, struct lora_modem_config *confi
335
335
}
336
336
337
337
if (RYLR_IS_ASYNC_OP_PENDING (data -> pending_async_flags )) {
338
- LOG_ERR ("pending async opperation " );
338
+ LOG_ERR ("pending async operation " );
339
339
err = - EBUSY ;
340
340
goto exit ;
341
341
}
@@ -379,7 +379,7 @@ int rylr_send(const struct device *dev, uint8_t *payload, uint32_t payload_len)
379
379
}
380
380
381
381
if (RYLR_IS_ASYNC_OP_PENDING (data -> pending_async_flags )) {
382
- LOG_ERR ("pending async opperation " );
382
+ LOG_ERR ("pending async operation " );
383
383
err = - EBUSY ;
384
384
goto exit ;
385
385
}
@@ -423,7 +423,7 @@ int rylr_send_async(const struct device *dev, uint8_t *payload, uint32_t payload
423
423
}
424
424
425
425
if (RYLR_IS_ASYNC_OP_PENDING (data -> pending_async_flags )) {
426
- LOG_ERR ("pending async opperation " );
426
+ LOG_ERR ("pending async operation " );
427
427
err = - EBUSY ;
428
428
goto bail ;
429
429
}
@@ -484,7 +484,7 @@ int rylr_recv(const struct device *dev, uint8_t *ret_msg, uint8_t size, k_timeou
484
484
}
485
485
486
486
if (RYLR_IS_ASYNC_OP_PENDING (data -> pending_async_flags )) {
487
- LOG_ERR ("pending async opperation " );
487
+ LOG_ERR ("pending async operation " );
488
488
ret = - EBUSY ;
489
489
goto exit ;
490
490
}
@@ -542,7 +542,7 @@ int rylr_recv_async(const struct device *dev, lora_recv_cb cb, void *user_data)
542
542
data -> async_rx_cb = cb ;
543
543
data -> async_user_data = user_data ;
544
544
if (RYLR_IS_ASYNC_OP_PENDING (data -> pending_async_flags )) {
545
- LOG_ERR ("pending async opperation " );
545
+ LOG_ERR ("pending async operation " );
546
546
err = - EBUSY ;
547
547
goto bail ;
548
548
}
0 commit comments