1 /*
2  * sht15.h - support for the SHT15 Temperature and Humidity Sensor
3  *
4  * Copyright (c) 2009 Jonathan Cameron
5  *
6  * Copyright (c) 2007 Wouter Horre
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 as
10  * published by the Free Software Foundation.
11  *
12  * For further information, see the Documentation/hwmon/sht15 file.
13  */
14 
15 /**
16  * struct sht15_platform_data - sht15 connectivity info
17  * @gpio_data:		no. of gpio to which bidirectional data line is
18  *			connected.
19  * @gpio_sck:		no. of gpio to which the data clock is connected.
20  * @supply_mv:		supply voltage in mv. Overridden by regulator if
21  *			available.
22  * @checksum:		flag to indicate the checksum should be validated.
23  * @no_otp_reload:	flag to indicate no reload from OTP.
24  * @low_resolution:	flag to indicate the temp/humidity resolution to use.
25  */
26 struct sht15_platform_data {
27 	int gpio_data;
28 	int gpio_sck;
29 	int supply_mv;
30 	bool checksum;
31 	bool no_otp_reload;
32 	bool low_resolution;
33 };
34 
35