Commit 02db0bb3 authored by Jonathan Cameron's avatar Jonathan Cameron Committed by Greg Kroah-Hartman

staging:iio:buffer - remove unused event code for buffer events.

These events are no longer passed up to userspace.

ad7745 - was using these events to indicate directly dataready
events.  I'm not sure when it ever makes sense to push these
to userspace so for now I've taken them to event codes 0 and 1
until someone has time to make this driver do something more
standard. (they were arbitary before, they still are, be it
in a different way!)
Signed-off-by: default avatarJonathan Cameron <jic23@cam.ac.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 383f650f
......@@ -522,8 +522,8 @@ static const struct attribute_group ad774x_attribute_group = {
* data ready events
*/
#define IIO_EVENT_CODE_CAP_RDY IIO_BUFFER_EVENT_CODE(0)
#define IIO_EVENT_CODE_VT_RDY IIO_BUFFER_EVENT_CODE(1)
#define IIO_EVENT_CODE_CAP_RDY 0
#define IIO_EVENT_CODE_VT_RDY 1
#define IIO_EVENT_ATTR_CAP_RDY_SH(_evlist, _show, _store, _mask) \
IIO_EVENT_ATTR_SH(cap_rdy, _evlist, _show, _store, _mask)
......
......@@ -28,10 +28,6 @@
/* naughty temporary hack to match these against the event version
- need to flattern these together */
enum iio_chan_type {
/* Need this here for now to support buffer events
* set to 0 to avoid changes to ring_generic.c */
IIO_BUFFER = 0,
/* real channel types */
IIO_IN,
IIO_CURRENT,
......
......@@ -170,7 +170,6 @@ struct iio_const_attr {
#define IIO_EV_CLASS_LIGHT IIO_LIGHT
#define IIO_EV_CLASS_PROXIMITY IIO_PROXIMITY
#define IIO_EV_CLASS_TEMP IIO_TEMP
#define IIO_EV_CLASS_BUFFER IIO_BUFFER
#define IIO_EV_MOD_X IIO_MOD_X
#define IIO_EV_MOD_Y IIO_MOD_Y
......
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