mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-19 18:53:52 +08:00
d2912cb15b
Based on 2 normalized pattern(s): this program is free software you can redistribute it and or modify it under the terms of the gnu general public license version 2 as published by the free software foundation this program is free software you can redistribute it and or modify it under the terms of the gnu general public license version 2 as published by the free software foundation # extracted by the scancode license scanner the SPDX license identifier GPL-2.0-only has been chosen to replace the boilerplate/reference in 4122 file(s). Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Enrico Weigelt <info@metux.net> Reviewed-by: Kate Stewart <kstewart@linuxfoundation.org> Reviewed-by: Allison Randal <allison@lohutok.net> Cc: linux-spdx@vger.kernel.org Link: https://lkml.kernel.org/r/20190604081206.933168790@linutronix.de Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
34 lines
912 B
C
34 lines
912 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* max6697.h
|
|
* Copyright (c) 2012 Guenter Roeck <linux@roeck-us.net>
|
|
*/
|
|
|
|
#ifndef MAX6697_H
|
|
#define MAX6697_H
|
|
|
|
#include <linux/types.h>
|
|
|
|
/*
|
|
* For all bit masks:
|
|
* bit 0: local temperature
|
|
* bit 1..7: remote temperatures
|
|
*/
|
|
struct max6697_platform_data {
|
|
bool smbus_timeout_disable; /* set to disable SMBus timeouts */
|
|
bool extended_range_enable; /* set to enable extended temp range */
|
|
bool beta_compensation; /* set to enable beta compensation */
|
|
u8 alert_mask; /* set bit to 1 to disable alert */
|
|
u8 over_temperature_mask; /* set bit to 1 to disable */
|
|
u8 resistance_cancellation; /* set bit to 0 to disable
|
|
* bit mask for MAX6581,
|
|
* boolean for other chips
|
|
*/
|
|
u8 ideality_mask; /* set bit to 0 to disable */
|
|
u8 ideality_value; /* transistor ideality as per
|
|
* MAX6581 datasheet
|
|
*/
|
|
};
|
|
|
|
#endif /* MAX6697_H */
|