mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 21:38:32 +08:00
8331585ab3
Not used to do anything anymore. Signed-off-by: Cosmin Tanislav <cosmin.tanislav@analog.com> Link: https://lore.kernel.org/r/20211221215841.2641417-6-demonsingur@gmail.com Tested-by: Cosmin Tanislav <cosmin.tanislav@analog.com> Reviewed-by: Cosmin Tanislav <cosmin.tanislav@analog.com> Signed-off-by: Guenter Roeck <linux@roeck-us.net>
31 lines
695 B
C
31 lines
695 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef __HWMON_ADT7X10_H__
|
|
#define __HWMON_ADT7X10_H__
|
|
|
|
#include <linux/types.h>
|
|
#include <linux/pm.h>
|
|
|
|
/* ADT7410 registers definition */
|
|
#define ADT7X10_TEMPERATURE 0
|
|
#define ADT7X10_STATUS 2
|
|
#define ADT7X10_CONFIG 3
|
|
#define ADT7X10_T_ALARM_HIGH 4
|
|
#define ADT7X10_T_ALARM_LOW 6
|
|
#define ADT7X10_T_CRIT 8
|
|
#define ADT7X10_T_HYST 0xA
|
|
#define ADT7X10_ID 0xB
|
|
|
|
struct device;
|
|
|
|
int adt7x10_probe(struct device *dev, const char *name, int irq,
|
|
struct regmap *regmap);
|
|
|
|
#ifdef CONFIG_PM_SLEEP
|
|
extern const struct dev_pm_ops adt7x10_dev_pm_ops;
|
|
#define ADT7X10_DEV_PM_OPS (&adt7x10_dev_pm_ops)
|
|
#else
|
|
#define ADT7X10_DEV_PM_OPS NULL
|
|
#endif
|
|
|
|
#endif
|