mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-16 21:57:31 +07:00
fcc577dd55
This patch renames the top half handler and the bottom half handler of iio_triggered_buffer_setup() in accordance with their usage. The bottom half has been renamed to reflect the fact that it is a thread based call, compliant with iio_alloc_pollfunc(). The names of the parameters were swapped, thus creating confusion. Signed-off-by: Cristina Opriceana <cristina.opriceana@gmail.com> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
16 lines
410 B
C
16 lines
410 B
C
#ifndef _LINUX_IIO_TRIGGERED_BUFFER_H_
|
|
#define _LINUX_IIO_TRIGGERED_BUFFER_H_
|
|
|
|
#include <linux/interrupt.h>
|
|
|
|
struct iio_dev;
|
|
struct iio_buffer_setup_ops;
|
|
|
|
int iio_triggered_buffer_setup(struct iio_dev *indio_dev,
|
|
irqreturn_t (*h)(int irq, void *p),
|
|
irqreturn_t (*thread)(int irq, void *p),
|
|
const struct iio_buffer_setup_ops *setup_ops);
|
|
void iio_triggered_buffer_cleanup(struct iio_dev *indio_dev);
|
|
|
|
#endif
|