aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/iio/adc/ti-ads1015.c
diff options
context:
space:
mode:
authorMatt Ranostay <matt.ranostay@intel.com>2016-05-17 15:02:03 -0700
committerJonathan Cameron <jic23@kernel.org>2016-05-28 18:20:45 +0100
commit8ac8aa61f87eda944cf29229c9c20cba9e83f1ea (patch)
treefd42abb6dd9822bc008362841733d37a4b448ba1 /drivers/iio/adc/ti-ads1015.c
parentMAINTAINERS: Add file patterns for staging iio device tree bindings (diff)
downloadlinux-dev-8ac8aa61f87eda944cf29229c9c20cba9e83f1ea.tar.xz
linux-dev-8ac8aa61f87eda944cf29229c9c20cba9e83f1ea.zip
iio: adc: ti-ads1015: add datasheet names
Add datasheet names for ADC channels to allow iio consumers access. Signed-off-by: Matt Ranostay <matt.ranostay@intel.com> Acked-by: Daniel Baluta <daniel.baluta@intel.com> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Diffstat (limited to 'drivers/iio/adc/ti-ads1015.c')
-rw-r--r--drivers/iio/adc/ti-ads1015.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/iio/adc/ti-ads1015.c b/drivers/iio/adc/ti-ads1015.c
index a83542319d28..8be192a84893 100644
--- a/drivers/iio/adc/ti-ads1015.c
+++ b/drivers/iio/adc/ti-ads1015.c
@@ -110,6 +110,7 @@ static const struct {
.shift = 4, \
.endianness = IIO_CPU, \
}, \
+ .datasheet_name = "AIN"#_chan, \
}
#define ADS1015_V_DIFF_CHAN(_chan, _chan2, _addr) { \
@@ -130,6 +131,7 @@ static const struct {
.shift = 4, \
.endianness = IIO_CPU, \
}, \
+ .datasheet_name = "AIN"#_chan"-AIN"#_chan2, \
}
#define ADS1115_V_CHAN(_chan, _addr) { \
@@ -147,6 +149,7 @@ static const struct {
.storagebits = 16, \
.endianness = IIO_CPU, \
}, \
+ .datasheet_name = "AIN"#_chan, \
}
#define ADS1115_V_DIFF_CHAN(_chan, _chan2, _addr) { \
@@ -166,6 +169,7 @@ static const struct {
.storagebits = 16, \
.endianness = IIO_CPU, \
}, \
+ .datasheet_name = "AIN"#_chan"-AIN"#_chan2, \
}
struct ads1015_data {