1
0
Fork 0

staging:iio: Add channel types IIO_CURRENT and IIO_POWER.

This is required for the ADE7758 driver cleanup.

Signed-off-by: Michael Hennerich <michael.hennerich@analog.com>
Acked-by: Jonathan Cameron <jic23@cam.ac.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
hifive-unleashed-5.1
Michael Hennerich 2011-05-18 14:42:02 +01:00 committed by Greg Kroah-Hartman
parent e61181d0a3
commit faf290e867
2 changed files with 4 additions and 0 deletions

View File

@ -36,6 +36,8 @@ enum iio_chan_type {
/* real channel types */
IIO_IN,
IIO_CURRENT,
IIO_POWER,
IIO_ACCEL,
IIO_IN_DIFF,
IIO_GYRO,

View File

@ -48,6 +48,8 @@ static const char * const iio_chan_type_name_spec_shared[] = {
[IIO_TIMESTAMP] = "timestamp",
[IIO_ACCEL] = "accel",
[IIO_IN] = "in",
[IIO_CURRENT] = "current",
[IIO_POWER] = "power",
[IIO_IN_DIFF] = "in-in",
[IIO_GYRO] = "gyro",
[IIO_TEMP] = "temp",