1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 /*
3  * Copyright (C) 2016 Sensirion AG, Switzerland
4  * Author: David Frey <david.frey@sensirion.com>
5  * Author: Pascal Sachs <pascal.sachs@sensirion.com>
6  */
7 
8 #ifndef __SHT3X_H_
9 #define __SHT3X_H_
10 
11 struct sht3x_platform_data {
12 	bool blocking_io;
13 	bool high_precision;
14 };
15 #endif /* __SHT3X_H_ */
16