summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesse Gilles <jgilles@multitech.com>2010-12-17 14:00:38 -0600
committerJesse Gilles <jgilles@multitech.com>2010-12-17 14:00:38 -0600
commit87d9d4ca8dc9795391b3bba46165fac4e12f9acc (patch)
treec0321070522c08fcd82e66a3ffc3d43ffb92a328
parent5d228515e773f12bc1d6e17a651bbb07740e0db5 (diff)
downloadcdp-io-controller-87d9d4ca8dc9795391b3bba46165fac4e12f9acc.tar.gz
cdp-io-controller-87d9d4ca8dc9795391b3bba46165fac4e12f9acc.tar.bz2
cdp-io-controller-87d9d4ca8dc9795391b3bba46165fac4e12f9acc.zip
fix log typosv0.4.0
-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;
}