Commit d38d5469 authored by Matt Ranostay's avatar Matt Ranostay Committed by Jonathan Cameron

iio: resistance: add IIO_RESISTANCE channel type

Signed-off-by: default avatarMatt Ranostay <mranostay@gmail.com>
Signed-off-by: default avatarJonathan Cameron <jic23@kernel.org>
parent 8ff6b3bc
...@@ -1471,3 +1471,11 @@ KernelVersion: 4.3 ...@@ -1471,3 +1471,11 @@ KernelVersion: 4.3
Contact: linux-iio@vger.kernel.org Contact: linux-iio@vger.kernel.org
Description: Description:
Raw (unscaled no offset etc.) percentage reading of a substance. Raw (unscaled no offset etc.) percentage reading of a substance.
What: /sys/bus/iio/devices/iio:deviceX/in_resistance_raw
What: /sys/bus/iio/devices/iio:deviceX/in_resistanceX_raw
KernelVersion: 4.3
Contact: linux-iio@vger.kernel.org
Description:
Raw (unscaled no offset etc.) resistance reading that can be processed
into an ohm value.
...@@ -76,6 +76,7 @@ static const char * const iio_chan_type_name_spec[] = { ...@@ -76,6 +76,7 @@ static const char * const iio_chan_type_name_spec[] = {
[IIO_DISTANCE] = "distance", [IIO_DISTANCE] = "distance",
[IIO_VELOCITY] = "velocity", [IIO_VELOCITY] = "velocity",
[IIO_CONCENTRATION] = "concentration", [IIO_CONCENTRATION] = "concentration",
[IIO_RESISTANCE] = "resistance",
}; };
static const char * const iio_modifier_names[] = { static const char * const iio_modifier_names[] = {
......
...@@ -36,6 +36,7 @@ enum iio_chan_type { ...@@ -36,6 +36,7 @@ enum iio_chan_type {
IIO_DISTANCE, IIO_DISTANCE,
IIO_VELOCITY, IIO_VELOCITY,
IIO_CONCENTRATION, IIO_CONCENTRATION,
IIO_RESISTANCE,
}; };
enum iio_modifier { enum iio_modifier {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment