staging:iio:adc:adt7410 replace abuse of buffer events.
Signed-off-by: Jonathan Cameron <jic23@cam.ac.uk> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
e7a2c32383
commit
d1ab8552cd
1 changed files with 12 additions and 14 deletions
|
@ -355,14 +355,6 @@ static const struct attribute_group adt7410_attribute_group = {
|
||||||
.attrs = adt7410_attributes,
|
.attrs = adt7410_attributes,
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
|
||||||
* temperature bound events
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define IIO_EVENT_CODE_ADT7410_ABOVE_ALARM IIO_BUFFER_EVENT_CODE(0)
|
|
||||||
#define IIO_EVENT_CODE_ADT7410_BELLOW_ALARM IIO_BUFFER_EVENT_CODE(1)
|
|
||||||
#define IIO_EVENT_CODE_ADT7410_ABOVE_CRIT IIO_BUFFER_EVENT_CODE(2)
|
|
||||||
|
|
||||||
static irqreturn_t adt7410_event_handler(int irq, void *private)
|
static irqreturn_t adt7410_event_handler(int irq, void *private)
|
||||||
{
|
{
|
||||||
struct iio_dev *indio_dev = private;
|
struct iio_dev *indio_dev = private;
|
||||||
|
@ -375,16 +367,22 @@ static irqreturn_t adt7410_event_handler(int irq, void *private)
|
||||||
|
|
||||||
if (status & ADT7410_STAT_T_HIGH)
|
if (status & ADT7410_STAT_T_HIGH)
|
||||||
iio_push_event(indio_dev, 0,
|
iio_push_event(indio_dev, 0,
|
||||||
IIO_EVENT_CODE_ADT7410_ABOVE_ALARM,
|
IIO_UNMOD_EVENT_CODE(IIO_TEMP, 0,
|
||||||
timestamp);
|
IIO_EV_TYPE_THRESH,
|
||||||
|
IIO_EV_DIR_RISING),
|
||||||
|
timestamp);
|
||||||
if (status & ADT7410_STAT_T_LOW)
|
if (status & ADT7410_STAT_T_LOW)
|
||||||
iio_push_event(indio_dev, 0,
|
iio_push_event(indio_dev, 0,
|
||||||
IIO_EVENT_CODE_ADT7410_BELLOW_ALARM,
|
IIO_UNMOD_EVENT_CODE(IIO_TEMP, 0,
|
||||||
timestamp);
|
IIO_EV_TYPE_THRESH,
|
||||||
|
IIO_EV_DIR_FALLING),
|
||||||
|
timestamp);
|
||||||
if (status & ADT7410_STAT_T_CRIT)
|
if (status & ADT7410_STAT_T_CRIT)
|
||||||
iio_push_event(indio_dev, 0,
|
iio_push_event(indio_dev, 0,
|
||||||
IIO_EVENT_CODE_ADT7410_ABOVE_CRIT,
|
IIO_UNMOD_EVENT_CODE(IIO_TEMP, 0,
|
||||||
timestamp);
|
IIO_EV_TYPE_THRESH,
|
||||||
|
IIO_EV_DIR_RISING),
|
||||||
|
timestamp);
|
||||||
|
|
||||||
return IRQ_HANDLED;
|
return IRQ_HANDLED;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue