Merge tag 'riscv-for-linus-6.10-rc6' of git://git.kernel.org/pub/scm/linux/kernel...
[linux-2.6-block.git] / drivers / hwmon / adt7x10.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
51c2a487
LPC
2#ifndef __HWMON_ADT7X10_H__
3#define __HWMON_ADT7X10_H__
4
5#include <linux/types.h>
6#include <linux/pm.h>
7
8/* ADT7410 registers definition */
9#define ADT7X10_TEMPERATURE 0
10#define ADT7X10_STATUS 2
11#define ADT7X10_CONFIG 3
12#define ADT7X10_T_ALARM_HIGH 4
13#define ADT7X10_T_ALARM_LOW 6
14#define ADT7X10_T_CRIT 8
15#define ADT7X10_T_HYST 0xA
16#define ADT7X10_ID 0xB
17
18struct device;
19
4b5e536b 20int adt7x10_probe(struct device *dev, const char *name, int irq,
f5320701
GR
21 struct regmap *regmap);
22
51c2a487 23extern const struct dev_pm_ops adt7x10_dev_pm_ops;
51c2a487
LPC
24
25#endif