From: Hans de Goede <hdegoede@xxxxxxxxxx> commit e50a57d16f897e45de1112eb6478577b197fab52 upstream. Temp channel 0 aka temp1 can have a temp1_max_alarm attribute for power_supply devices which have a POWER_SUPPLY_PROP_TEMP_ALERT_MAX property. HWMON_T_MAX_ALARM was missing from power_supply_hwmon_info for temp channel 0, causing the hwmon temp1_max_alarm attribute to be missing from such power_supply devices. Add this to power_supply_hwmon_info to fix this. Fixes: f1d33ae806ec ("power: supply: remove duplicated argument in power_supply_hwmon_info") Cc: stable@xxxxxxxxxxxxxxx Signed-off-by: Hans de Goede <hdegoede@xxxxxxxxxx> Link: https://lore.kernel.org/r/20240908185337.103696-2-hdegoede@xxxxxxxxxx Signed-off-by: Sebastian Reichel <sebastian.reichel@xxxxxxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- drivers/power/supply/power_supply_hwmon.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) --- a/drivers/power/supply/power_supply_hwmon.c +++ b/drivers/power/supply/power_supply_hwmon.c @@ -299,7 +299,8 @@ static const struct hwmon_channel_info * HWMON_T_INPUT | HWMON_T_MAX | HWMON_T_MIN | - HWMON_T_MIN_ALARM, + HWMON_T_MIN_ALARM | + HWMON_T_MAX_ALARM, HWMON_T_LABEL | HWMON_T_INPUT | Patches currently in stable-queue which might be from hdegoede@xxxxxxxxxx are queue-5.15/platform-x86-panasonic-laptop-allocate-1-entry-extra-in-the-sinf-array.patch queue-5.15/platform-x86-isst-fix-the-kasan-report-slab-out-of-bounds-bug.patch queue-5.15/platform-x86-panasonic-laptop-fix-sinf-array-out-of-bounds-accesses.patch queue-5.15/power-supply-hwmon-fix-missing-temp1_max_alarm-attribute.patch queue-5.15/input-goodix-use-the-new-soc_intel_is_byt-helper.patch queue-5.15/minmax-reduce-min-max-macro-expansion-in-atomisp-driver.patch queue-5.15/platform-x86-touchscreen_dmi-add-nanote-next-quirk.patch queue-5.15/acpi-ec-do-not-release-locks-during-operation-region.patch