You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
322 B
14 lines
322 B
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef _IIO_DUMMY_EVGEN_H_
|
|
#define _IIO_DUMMY_EVGEN_H_
|
|
|
|
struct iio_dummy_regs {
|
|
u32 reg_id;
|
|
u32 reg_data;
|
|
};
|
|
|
|
struct iio_dummy_regs *iio_dummy_evgen_get_regs(int irq);
|
|
int iio_dummy_evgen_get_irq(void);
|
|
void iio_dummy_evgen_release_irq(int irq);
|
|
|
|
#endif /* _IIO_DUMMY_EVGEN_H_ */
|
|
|