mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-05 04:56:46 +07:00
735ad074ff
Support triggered events. This is useful for chips that don't have their own interrupt sources. It allows to use generic/standalone iio triggers for those drivers. Signed-off-by: Vladimir Barinov <vladimir.barinov@cogentembedded.com> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
12 lines
313 B
C
12 lines
313 B
C
#ifndef _LINUX_IIO_TRIGGERED_EVENT_H_
|
|
#define _LINUX_IIO_TRIGGERED_EVENT_H_
|
|
|
|
#include <linux/interrupt.h>
|
|
|
|
int iio_triggered_event_setup(struct iio_dev *indio_dev,
|
|
irqreturn_t (*h)(int irq, void *p),
|
|
irqreturn_t (*thread)(int irq, void *p));
|
|
void iio_triggered_event_cleanup(struct iio_dev *indio_dev);
|
|
|
|
#endif
|