summaryrefslogtreecommitdiff
path: root/include/linux/iio/machine.h
diff options
context:
space:
mode:
authorJonathan Cameron <jic23@kernel.org>2012-06-30 19:06:00 (GMT)
committerJonathan Cameron <jic23@kernel.org>2012-11-10 10:17:27 (GMT)
commit0464415dd21785aa8e8b12dbc939fcb5ca52f464 (patch)
tree36a5fff19aebcf8aa5eeff66ac8d8473a01765e8 /include/linux/iio/machine.h
parent84b36ce5f79c01f792c623f14e92ed86cdccb42f (diff)
downloadlinux-fsl-qoriq-0464415dd21785aa8e8b12dbc939fcb5ca52f464.tar.xz
staging:iio:in kernel users: Add a data field for channel specific info.
Used to allow information about a given channel mapping to be passed through from board files to the consumer drivers. Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Diffstat (limited to 'include/linux/iio/machine.h')
-rw-r--r--include/linux/iio/machine.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/iio/machine.h b/include/linux/iio/machine.h
index 809a3f0..1601a2a 100644
--- a/include/linux/iio/machine.h
+++ b/include/linux/iio/machine.h
@@ -19,11 +19,13 @@
* @consumer_dev_name: Name to uniquely identify the consumer device.
* @consumer_channel: Unique name used to identify the channel on the
* consumer side.
+ * @consumer_data: Data about the channel for use by the consumer driver.
*/
struct iio_map {
const char *adc_channel_label;
const char *consumer_dev_name;
const char *consumer_channel;
+ void *consumer_data;
};
#endif