Commit 1843c2f3 authored by Irina Tirdea's avatar Irina Tirdea Committed by Jonathan Cameron

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: default avatarIrina Tirdea <irina.tirdea@intel.com>
Signed-off-by: default avatarDaniel Baluta <daniel.baluta@intel.com>
Signed-off-by: default avatarJonathan Cameron <jic23@kernel.org>
parent 55aebeb9
...@@ -327,9 +327,15 @@ static int iio_device_add_event(struct iio_dev *indio_dev, ...@@ -327,9 +327,15 @@ static int iio_device_add_event(struct iio_dev *indio_dev,
for_each_set_bit(i, mask, sizeof(*mask)*8) { for_each_set_bit(i, mask, sizeof(*mask)*8) {
if (i >= ARRAY_SIZE(iio_ev_info_text)) if (i >= ARRAY_SIZE(iio_ev_info_text))
return -EINVAL; return -EINVAL;
postfix = kasprintf(GFP_KERNEL, "%s_%s_%s", if (dir != IIO_EV_DIR_NONE)
iio_ev_type_text[type], iio_ev_dir_text[dir], postfix = kasprintf(GFP_KERNEL, "%s_%s_%s",
iio_ev_info_text[i]); iio_ev_type_text[type],
iio_ev_dir_text[dir],
iio_ev_info_text[i]);
else
postfix = kasprintf(GFP_KERNEL, "%s_%s",
iio_ev_type_text[type],
iio_ev_info_text[i]);
if (postfix == NULL) if (postfix == NULL)
return -ENOMEM; return -ENOMEM;
......
...@@ -86,6 +86,7 @@ enum iio_event_direction { ...@@ -86,6 +86,7 @@ enum iio_event_direction {
IIO_EV_DIR_EITHER, IIO_EV_DIR_EITHER,
IIO_EV_DIR_RISING, IIO_EV_DIR_RISING,
IIO_EV_DIR_FALLING, IIO_EV_DIR_FALLING,
IIO_EV_DIR_NONE,
}; };
#define IIO_VAL_INT 1 #define IIO_VAL_INT 1
......
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