diff options
author | Jonathan Cameron <jic23@kernel.org> | 2012-06-30 23:06:00 +0400 |
---|---|---|
committer | Jonathan Cameron <jic23@kernel.org> | 2012-11-10 14:17:27 +0400 |
commit | 0464415dd21785aa8e8b12dbc939fcb5ca52f464 (patch) | |
tree | 36a5fff19aebcf8aa5eeff66ac8d8473a01765e8 /include/linux/iio/consumer.h | |
parent | 84b36ce5f79c01f792c623f14e92ed86cdccb42f (diff) | |
download | linux-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/consumer.h')
-rw-r--r-- | include/linux/iio/consumer.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/iio/consumer.h b/include/linux/iio/consumer.h index e875bcf0478f..57efee63a6da 100644 --- a/include/linux/iio/consumer.h +++ b/include/linux/iio/consumer.h @@ -18,10 +18,12 @@ struct iio_chan_spec; * struct iio_channel - everything needed for a consumer to use a channel * @indio_dev: Device on which the channel exists. * @channel: Full description of the channel. + * @data: Data about the channel used by consumer. */ struct iio_channel { struct iio_dev *indio_dev; const struct iio_chan_spec *channel; + void *data; }; /** |