aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/platform_data/sht3x.h
diff options
context:
space:
mode:
authorDavid Frey <david.frey@sensirion.com>2016-06-02 09:59:11 +0200
committerGuenter Roeck <linux@roeck-us.net>2016-06-27 18:58:03 -0700
commit7c84f7f80d6fcea36246b793d06c3555ca53ddcd (patch)
tree28469d58b195ac6a9c957b14a3c2f1ae65bfd60a /include/linux/platform_data/sht3x.h
parenthwmon: (max1668) Fix typo in documentation (diff)
downloadlinux-dev-7c84f7f80d6fcea36246b793d06c3555ca53ddcd.tar.xz
linux-dev-7c84f7f80d6fcea36246b793d06c3555ca53ddcd.zip
hwmon: add support for Sensirion SHT3x sensors
This driver implements support for the Sensirion SHT3x-DIS chip, a humidity and temperature sensor. Temperature is measured in degrees celsius, relative humidity is expressed as a percentage. In the sysfs interface, all values are scaled by 1000, i.e. the value for 31.5 degrees celsius is 31500. Signed-off-by: Pascal Sachs <pascal.sachs@sensirion.com> [groeck: Fixed 'Variable length array is used' gcc warning] Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Diffstat (limited to 'include/linux/platform_data/sht3x.h')
-rw-r--r--include/linux/platform_data/sht3x.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/include/linux/platform_data/sht3x.h b/include/linux/platform_data/sht3x.h
new file mode 100644
index 000000000000..2e5eea358194
--- /dev/null
+++ b/include/linux/platform_data/sht3x.h
@@ -0,0 +1,25 @@
+/*
+ * Copyright (C) 2016 Sensirion AG, Switzerland
+ * Author: David Frey <david.frey@sensirion.com>
+ * Author: Pascal Sachs <pascal.sachs@sensirion.com>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ */
+
+#ifndef __SHT3X_H_
+#define __SHT3X_H_
+
+struct sht3x_platform_data {
+ bool blocking_io;
+ bool high_precision;
+};
+#endif /* __SHT3X_H_ */