forked from mirrors/linux
		
	It's unused so far, so it can be removed. Also makes sense to remove it to discourage weird uses of this call during review. Signed-off-by: Alexandru Ardelean <alexandru.ardelean@analog.com> Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
		
			
				
	
	
		
			22 lines
		
	
	
	
		
			683 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			683 B
		
	
	
	
		
			C
		
	
	
	
	
	
/* SPDX-License-Identifier: GPL-2.0 */
 | 
						|
#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);
 | 
						|
 | 
						|
int devm_iio_triggered_buffer_setup(struct device *dev,
 | 
						|
				    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 *ops);
 | 
						|
 | 
						|
#endif
 |