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.
21 lines
410 B
21 lines
410 B
![]()
14 years ago
|
/*
|
||
|
* AD7298 SPI ADC driver
|
||
|
*
|
||
|
* Copyright 2011 Analog Devices Inc.
|
||
|
*
|
||
|
* Licensed under the GPL-2.
|
||
|
*/
|
||
|
|
||
![]()
12 years ago
|
#ifndef __LINUX_PLATFORM_DATA_AD7298_H__
|
||
|
#define __LINUX_PLATFORM_DATA_AD7298_H__
|
||
![]()
14 years ago
|
|
||
![]()
12 years ago
|
/**
|
||
|
* struct ad7298_platform_data - Platform data for the ad7298 ADC driver
|
||
|
* @ext_ref: Whether to use an external reference voltage.
|
||
|
**/
|
||
![]()
14 years ago
|
struct ad7298_platform_data {
|
||
![]()
12 years ago
|
bool ext_ref;
|
||
![]()
14 years ago
|
};
|
||
|
|
||
|
#endif /* IIO_ADC_AD7298_H_ */
|