Skip to content

Commit 312ad78

Browse files
committed
drivers: lora: fix spelling of "operation"
s/opperation/operation/ Signed-off-by: Benjamin Cabé <[email protected]>
1 parent 76b1e41 commit 312ad78

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

drivers/lora/rylrxxx.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ static int rylr_config(const struct device *dev, struct lora_modem_config *confi
335335
}
336336

337337
if (RYLR_IS_ASYNC_OP_PENDING(data->pending_async_flags)) {
338-
LOG_ERR("pending async opperation");
338+
LOG_ERR("pending async operation");
339339
err = -EBUSY;
340340
goto exit;
341341
}
@@ -379,7 +379,7 @@ int rylr_send(const struct device *dev, uint8_t *payload, uint32_t payload_len)
379379
}
380380

381381
if (RYLR_IS_ASYNC_OP_PENDING(data->pending_async_flags)) {
382-
LOG_ERR("pending async opperation");
382+
LOG_ERR("pending async operation");
383383
err = -EBUSY;
384384
goto exit;
385385
}
@@ -423,7 +423,7 @@ int rylr_send_async(const struct device *dev, uint8_t *payload, uint32_t payload
423423
}
424424

425425
if (RYLR_IS_ASYNC_OP_PENDING(data->pending_async_flags)) {
426-
LOG_ERR("pending async opperation");
426+
LOG_ERR("pending async operation");
427427
err = -EBUSY;
428428
goto bail;
429429
}
@@ -484,7 +484,7 @@ int rylr_recv(const struct device *dev, uint8_t *ret_msg, uint8_t size, k_timeou
484484
}
485485

486486
if (RYLR_IS_ASYNC_OP_PENDING(data->pending_async_flags)) {
487-
LOG_ERR("pending async opperation");
487+
LOG_ERR("pending async operation");
488488
ret = -EBUSY;
489489
goto exit;
490490
}
@@ -542,7 +542,7 @@ int rylr_recv_async(const struct device *dev, lora_recv_cb cb, void *user_data)
542542
data->async_rx_cb = cb;
543543
data->async_user_data = user_data;
544544
if (RYLR_IS_ASYNC_OP_PENDING(data->pending_async_flags)) {
545-
LOG_ERR("pending async opperation");
545+
LOG_ERR("pending async operation");
546546
err = -EBUSY;
547547
goto bail;
548548
}

0 commit comments

Comments
 (0)