Skip to content

Commit

Permalink
staging:iio:adc:ad7816 and adt75 change to meaningful event code.
Browse files Browse the repository at this point in the history
This was another abuse of the buffer event codes.

Signed-off-by: Jonathan Cameron <jic23@cam.ac.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Jonathan Cameron authored and Greg Kroah-Hartman committed May 19, 2011
1 parent d91a0ab commit 0bb8be6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion drivers/staging/iio/adc/ad7816.c
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,10 @@ static const struct attribute_group ad7816_attribute_group = {
* temperature bound events
*/

#define IIO_EVENT_CODE_AD7816_OTI IIO_BUFFER_EVENT_CODE(0)
#define IIO_EVENT_CODE_AD7816_OTI IIO_UNMOD_EVENT_CODE(IIO_EV_CLASS_TEMP, \
0, \
IIO_EV_TYPE_THRESH, \
IIO_EV_DIR_FALLING)

static irqreturn_t ad7816_event_handler(int irq, void *private)
{
Expand Down
5 changes: 4 additions & 1 deletion drivers/staging/iio/adc/adt75.c
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,10 @@ static const struct attribute_group adt75_attribute_group = {
* temperature bound events
*/

#define IIO_EVENT_CODE_ADT75_OTI IIO_BUFFER_EVENT_CODE(0)
#define IIO_EVENT_CODE_ADT75_OTI IIO_UNMOD_EVENT_CODE(IIO_EV_CLASS_TEMP, \
0, \
IIO_EV_TYPE_THRESH, \
IIO_EV_DIR_FALLING)

static irqreturn_t adt75_event_handler(int irq, void *private)
{
Expand Down

0 comments on commit 0bb8be6

Please sign in to comment.