summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--io-module/mts_io.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/io-module/mts_io.c b/io-module/mts_io.c
index ebf8bea..ac3a388 100644
--- a/io-module/mts_io.c
+++ b/io-module/mts_io.c
@@ -684,7 +684,7 @@ static ssize_t mts_attr_store_sout(struct device *dev,
!strcmp(attr->attr.name, "led-sdk-e")) {
bit = SOUT_LED_SIG3_BIT;
} else {
- log_notice("sout attr does not exists");
+ log_notice("sout attr does not exist");
return -ENOENT;
}
@@ -741,7 +741,7 @@ static ssize_t mts_attr_show_sout(struct device *dev,
!strcmp(attr->attr.name, "led-sdk-e")) {
bit = SOUT_LED_SIG3_BIT;
} else {
- log_notice("sout attr does not exists");
+ log_notice("sout attr does not exist");
return -ENOENT;
}
@@ -899,7 +899,7 @@ static ssize_t mts_attr_store_dout(struct device *dev,
} else if (!strcmp(attr->attr.name, "dout7")) {
bit = BIT(7);
} else {
- log_notice("dout attr does not exists");
+ log_notice("dout attr does not exist");
return -ENOENT;
}
@@ -951,7 +951,7 @@ static ssize_t mts_attr_show_dout(struct device *dev,
} else if (!strcmp(attr->attr.name, "dout7")) {
bit = BIT(7);
} else {
- log_notice("dout attr does not exists");
+ log_notice("dout attr does not exist");
return -ENOENT;
}
@@ -1066,7 +1066,7 @@ static ssize_t mts_attr_show_din(struct device *dev,
} else if (!strcmp(attr->attr.name, "din7")) {
bit = BIT(7);
} else {
- log_notice("din attr does not exists");
+ log_notice("din attr does not exist");
return -ENOENT;
}
@@ -1446,7 +1446,7 @@ static ssize_t mts_attr_show_adc(struct device *dev,
} else if (!strcmp(attr->attr.name, "adc3")) {
offset = ADC_CDR3_OFFSET;
} else {
- log_notice("adc attr does not exists");
+ log_notice("adc attr does not exist");
return -ENOENT;
}