hwmon: Add missing HWMON_T_LCRIT_ALARM define
The enum hwmon_temp_lcrit_alarm exists, but the BIT definition is missing. Signed-off-by: Andrew Lunn <andrew@lunn.ch> Acked-by: Guenter Roeck <linux@roeck-us.net> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
7c1fbfa7b2
commit
2fe31e4312
|
@ -93,6 +93,7 @@ enum hwmon_temp_attributes {
|
||||||
#define HWMON_T_MIN_ALARM BIT(hwmon_temp_min_alarm)
|
#define HWMON_T_MIN_ALARM BIT(hwmon_temp_min_alarm)
|
||||||
#define HWMON_T_MAX_ALARM BIT(hwmon_temp_max_alarm)
|
#define HWMON_T_MAX_ALARM BIT(hwmon_temp_max_alarm)
|
||||||
#define HWMON_T_CRIT_ALARM BIT(hwmon_temp_crit_alarm)
|
#define HWMON_T_CRIT_ALARM BIT(hwmon_temp_crit_alarm)
|
||||||
|
#define HWMON_T_LCRIT_ALARM BIT(hwmon_temp_lcrit_alarm)
|
||||||
#define HWMON_T_EMERGENCY_ALARM BIT(hwmon_temp_emergency_alarm)
|
#define HWMON_T_EMERGENCY_ALARM BIT(hwmon_temp_emergency_alarm)
|
||||||
#define HWMON_T_FAULT BIT(hwmon_temp_fault)
|
#define HWMON_T_FAULT BIT(hwmon_temp_fault)
|
||||||
#define HWMON_T_OFFSET BIT(hwmon_temp_offset)
|
#define HWMON_T_OFFSET BIT(hwmon_temp_offset)
|
||||||
|
|
Loading…
Reference in New Issue