projects
/
platform
/
kernel
/
linux-exynos.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5eda355
)
staging:iio:adis16400: Remove unit suffix from samplerate attribute
author
Lars-Peter Clausen
<lars@metafoo.de>
Wed, 16 Jan 2013 12:48:00 +0000
(12:48 +0000)
committer
Jonathan Cameron
<jic23@kernel.org>
Sat, 26 Jan 2013 10:07:48 +0000
(10:07 +0000)
To be compliant to the IIO specification we should not include the "SPS" suffix
in the "samplerate" attribute contents.
Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
drivers/staging/iio/imu/adis16400_core.c
patch
|
blob
|
history
diff --git
a/drivers/staging/iio/imu/adis16400_core.c
b/drivers/staging/iio/imu/adis16400_core.c
index
aa4ffcf
..
9429072
100644
(file)
--- a/
drivers/staging/iio/imu/adis16400_core.c
+++ b/
drivers/staging/iio/imu/adis16400_core.c
@@
-116,7
+116,7
@@
static ssize_t adis16400_read_frequency(struct device *dev,
ret = st->variant->get_freq(st);
if (ret < 0)
return ret;
- len = sprintf(buf, "%d
SPS
\n", ret);
+ len = sprintf(buf, "%d\n", ret);
return len;
}