From 87d9d4ca8dc9795391b3bba46165fac4e12f9acc Mon Sep 17 00:00:00 2001 From: Jesse Gilles Date: Fri, 17 Dec 2010 14:00:38 -0600 Subject: fix log typos --- io-module/mts_io.c | 12 ++++++------ 1 file 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; } -- cgit v1.2.3