mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-25 16:30:53 +07:00
3b1cae7c2c
The ad7291 driver is in a reasonable shape. It does not use non-standard API/ABI and there are no major style issues with the driver. So this patch moves it out of staging. There is one small warning from checkpatch which is also fixed in this patch. The patch also sorts the #include directives in alphabetical order. Signed-off-by: Lars-Peter Clausen <lars@metafoo.de> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
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
|