Staging
v0.5.1
https://github.com/torvalds/linux
Raw File
Tip revision: d5adbfcd5f7bcc6fa58a41c5c5ada0e5c826ce2c authored by Linus Torvalds on 05 February 2017, 23:10:58 UTC
Linux 4.10-rc7
Tip revision: d5adbfc
ds620.h
#ifndef _LINUX_DS620_H
#define _LINUX_DS620_H

#include <linux/types.h>
#include <linux/i2c.h>

/* platform data for the DS620 temperature sensor and thermostat */

struct ds620_platform_data {
	/*
	 *  Thermostat output pin PO mode:
	 *  0 = always low (default)
	 *  1 = PO_LOW
	 *  2 = PO_HIGH
	 *
	 * (see Documentation/hwmon/ds620)
	 */
	int pomode;
};

#endif /* _LINUX_DS620_H */
back to top