summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--io-module/mtac_eth.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/io-module/mtac_eth.c b/io-module/mtac_eth.c
index 7a35ea5..99e8c1d 100644
--- a/io-module/mtac_eth.c
+++ b/io-module/mtac_eth.c
@@ -4,7 +4,7 @@ static char* eth_gpio_pin_name_by_attr_name(const char* name, int port) {
if (! strcmp(name, "reset")) {
return "ap1-reset";
} else {
- log_error("attribute name [%s] is invalid for LORA in port %d", name, port);
+ log_error("attribute name [%s] is invalid for ETH in port %d", name, port);
return "";
}
@@ -12,7 +12,7 @@ static char* eth_gpio_pin_name_by_attr_name(const char* name, int port) {
if (! strcmp(name, "reset")) {
return "ap2-reset";
} else {
- log_error("attribute name [%s] is invalid for LORA in port %d", name, port);
+ log_error("attribute name [%s] is invalid for ETH in port %d", name, port);
return "";
}
}