Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v4.13-rc3 11 lines 313 B view raw
1#ifndef _LINUX_IIO_TRIGGERED_EVENT_H_ 2#define _LINUX_IIO_TRIGGERED_EVENT_H_ 3 4#include <linux/interrupt.h> 5 6int iio_triggered_event_setup(struct iio_dev *indio_dev, 7 irqreturn_t (*h)(int irq, void *p), 8 irqreturn_t (*thread)(int irq, void *p)); 9void iio_triggered_event_cleanup(struct iio_dev *indio_dev); 10 11#endif