repo: https://github.com/T-head-Semi/linux commit: b1313fe517ca3703119dcc99ef3bbf75ab42bcfb Change-Id: I6cbb35294024ea3a66140e311f4bb705fd7fd626
20 lines
422 B
C
20 lines
422 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* AD7298 SPI ADC driver
|
|
*
|
|
* Copyright 2011 Analog Devices Inc.
|
|
*/
|
|
|
|
#ifndef __LINUX_PLATFORM_DATA_AD7298_H__
|
|
#define __LINUX_PLATFORM_DATA_AD7298_H__
|
|
|
|
/**
|
|
* struct ad7298_platform_data - Platform data for the ad7298 ADC driver
|
|
* @ext_ref: Whether to use an external reference voltage.
|
|
**/
|
|
struct ad7298_platform_data {
|
|
bool ext_ref;
|
|
};
|
|
|
|
#endif /* IIO_ADC_AD7298_H_ */
|