diff options
author | Reyad Attiyat <reyad.attiyat@gmail.com> | 2014-07-17 14:18:00 -0400 |
---|---|---|
committer | Jonathan Cameron <jic23@kernel.org> | 2014-07-20 08:34:45 -0400 |
commit | 11b8ddab817eb8070a542d33caeb93cccfa4e383 (patch) | |
tree | e2dbaedb66956a3c989152f58962cd54d9068456 | |
parent | b531db84566644068c49933bf7f6d55932f901ea (diff) |
iio: types: Added support for rotation from north usage attributes
Added the rotation from north usage attributes to the iio modifier enum and to the iio modifier names array.
Signed-off-by: Reyad Attiyat <reyad.attiyat@gmail.com>
Acked-by: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
-rw-r--r-- | drivers/iio/industrialio-core.c | 4 | ||||
-rw-r--r-- | include/linux/iio/types.h | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/drivers/iio/industrialio-core.c b/drivers/iio/industrialio-core.c index 4b1f375c5659..af3e76d652ba 100644 --- a/drivers/iio/industrialio-core.c +++ b/drivers/iio/industrialio-core.c | |||
@@ -87,6 +87,10 @@ static const char * const iio_modifier_names[] = { | |||
87 | [IIO_MOD_QUATERNION] = "quaternion", | 87 | [IIO_MOD_QUATERNION] = "quaternion", |
88 | [IIO_MOD_TEMP_AMBIENT] = "ambient", | 88 | [IIO_MOD_TEMP_AMBIENT] = "ambient", |
89 | [IIO_MOD_TEMP_OBJECT] = "object", | 89 | [IIO_MOD_TEMP_OBJECT] = "object", |
90 | [IIO_MOD_NORTH_MAGN] = "from_north_magnetic", | ||
91 | [IIO_MOD_NORTH_TRUE] = "from_north_true", | ||
92 | [IIO_MOD_NORTH_MAGN_TILT_COMP] = "from_north_magnetic_tilt_comp", | ||
93 | [IIO_MOD_NORTH_TRUE_TILT_COMP] = "from_north_true_tilt_comp", | ||
90 | }; | 94 | }; |
91 | 95 | ||
92 | /* relies on pairs of these shared then separate */ | 96 | /* relies on pairs of these shared then separate */ |
diff --git a/include/linux/iio/types.h b/include/linux/iio/types.h index 4a848d6be3bf..4a2af8adf874 100644 --- a/include/linux/iio/types.h +++ b/include/linux/iio/types.h | |||
@@ -56,6 +56,10 @@ enum iio_modifier { | |||
56 | IIO_MOD_QUATERNION, | 56 | IIO_MOD_QUATERNION, |
57 | IIO_MOD_TEMP_AMBIENT, | 57 | IIO_MOD_TEMP_AMBIENT, |
58 | IIO_MOD_TEMP_OBJECT, | 58 | IIO_MOD_TEMP_OBJECT, |
59 | IIO_MOD_NORTH_MAGN, | ||
60 | IIO_MOD_NORTH_TRUE, | ||
61 | IIO_MOD_NORTH_MAGN_TILT_COMP, | ||
62 | IIO_MOD_NORTH_TRUE_TILT_COMP | ||
59 | }; | 63 | }; |
60 | 64 | ||
61 | enum iio_event_type { | 65 | enum iio_event_type { |