aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars-Peter Clausen <lars@metafoo.de>2014-09-25 10:27:00 -0400
committerJonathan Cameron <jic23@kernel.org>2014-11-05 13:33:42 -0500
commit97fb3033128958457f77456dc677a64bce8d33ae (patch)
tree74f060230decb92ae4597d8c68e488a2904b9301
parent4a53d3afa00b0b74b0e49b147902a41e55b2e715 (diff)
staging:iio:ad5933: Drop "raw" from channel names
"raw" is the name of a channel property, but should not be part of the channel name itself. Signed-off-by: Lars-Peter Clausen <lars@metafoo.de> Cc: <Stable@vger.kernel.org> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
-rw-r--r--drivers/staging/iio/impedance-analyzer/ad5933.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/iio/impedance-analyzer/ad5933.c b/drivers/staging/iio/impedance-analyzer/ad5933.c
index 9a6665dcf72b..b6bd609c3655 100644
--- a/drivers/staging/iio/impedance-analyzer/ad5933.c
+++ b/drivers/staging/iio/impedance-analyzer/ad5933.c
@@ -125,7 +125,7 @@ static const struct iio_chan_spec ad5933_channels[] = {
125 .type = IIO_VOLTAGE, 125 .type = IIO_VOLTAGE,
126 .indexed = 1, 126 .indexed = 1,
127 .channel = 0, 127 .channel = 0,
128 .extend_name = "real_raw", 128 .extend_name = "real",
129 .address = AD5933_REG_REAL_DATA, 129 .address = AD5933_REG_REAL_DATA,
130 .scan_index = 0, 130 .scan_index = 0,
131 .scan_type = { 131 .scan_type = {
@@ -137,7 +137,7 @@ static const struct iio_chan_spec ad5933_channels[] = {
137 .type = IIO_VOLTAGE, 137 .type = IIO_VOLTAGE,
138 .indexed = 1, 138 .indexed = 1,
139 .channel = 0, 139 .channel = 0,
140 .extend_name = "imag_raw", 140 .extend_name = "imag",
141 .address = AD5933_REG_IMAG_DATA, 141 .address = AD5933_REG_IMAG_DATA,
142 .scan_index = 1, 142 .scan_index = 1,
143 .scan_type = { 143 .scan_type = {