mirror of
https://github.com/Evolution-X-Devices/kernel_google_b1c1
synced 2026-02-10 12:20:09 +00:00
13 lines
257 B
C
13 lines
257 B
C
|
|
#ifndef __IIO_AD7291_H__
|
||
|
|
#define __IIO_AD7291_H__
|
||
|
|
|
||
|
|
/**
|
||
|
|
* struct ad7291_platform_data - AD7291 platform data
|
||
|
|
* @use_external_ref: Whether to use an external or internal reference voltage
|
||
|
|
*/
|
||
|
|
struct ad7291_platform_data {
|
||
|
|
bool use_external_ref;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif
|