summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorLars-Peter Clausen <lars@metafoo.de>2012-11-17 11:42:59 (GMT)
committerJonathan Cameron <jic23@kernel.org>2012-11-19 22:22:15 (GMT)
commit709ab36e9559ff5c7df6e6f2d9e3c4a4410f8d49 (patch)
treeb99dbcda071265cfd8aaf818ca26b2a28071dafe /include
parentdc4871adf96573f3ea1672fceb844301dc071a2b (diff)
downloadlinux-fsl-qoriq-709ab36e9559ff5c7df6e6f2d9e3c4a4410f8d49.tar.xz
staging:iio: Move the ad7298 driver out of staging
The driver does not expose any custom API to userspace and none of the standard static code checker tools report any issues, so move it out of staging. Signed-off-by: Lars-Peter Clausen <lars@metafoo.de> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Diffstat (limited to 'include')
-rw-r--r--include/linux/platform_data/ad7298.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/include/linux/platform_data/ad7298.h b/include/linux/platform_data/ad7298.h
new file mode 100644
index 0000000..fbf8adf
--- /dev/null
+++ b/include/linux/platform_data/ad7298.h
@@ -0,0 +1,20 @@
+/*
+ * 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_ */