aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/iio
diff options
context:
space:
mode:
authorIrina Tirdea <irina.tirdea@intel.com>2014-11-10 07:45:31 -0500
committerJonathan Cameron <jic23@kernel.org>2014-11-22 06:05:49 -0500
commit1843c2f3def16740eb6d129a9790c32dd21aa5ea (patch)
treef70176e6058796eeba8c2c8b3294392421fe9dac /include/linux/iio
parent55aebeb926b6f93a540328e7ac770ef536b09b77 (diff)
iio: core: Introduce IIO_EV_DIR_NONE
For some events (e.g.: step detector) a direction does not make sense. Add IIO_EV_DIR_NONE to be used with such events and generate sysfs event attributes that do not contain direction. Signed-off-by: Irina Tirdea <irina.tirdea@intel.com> Signed-off-by: Daniel Baluta <daniel.baluta@intel.com> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Diffstat (limited to 'include/linux/iio')
-rw-r--r--include/linux/iio/types.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/iio/types.h b/include/linux/iio/types.h
index b3a241d53b54..52cb5329407b 100644
--- a/include/linux/iio/types.h
+++ b/include/linux/iio/types.h
@@ -86,6 +86,7 @@ enum iio_event_direction {
86 IIO_EV_DIR_EITHER, 86 IIO_EV_DIR_EITHER,
87 IIO_EV_DIR_RISING, 87 IIO_EV_DIR_RISING,
88 IIO_EV_DIR_FALLING, 88 IIO_EV_DIR_FALLING,
89 IIO_EV_DIR_NONE,
89}; 90};
90 91
91#define IIO_VAL_INT 1 92#define IIO_VAL_INT 1