Staging
v0.8.1
https://github.com/torvalds/linux
Raw File
Tip revision: 0df1f2487d2f0d04703f142813d53615d62a1da4 authored by Linus Torvalds on 02 November 2014, 23:01:51 UTC
Linux 3.18-rc3
Tip revision: 0df1f24
ad7298.h
/*
 * AD7298 SPI ADC driver
 *
 * Copyright 2011 Analog Devices Inc.
 *
 * Licensed under the GPL-2.
 */

#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_ */
back to top