This is a note to let you know that I've just added the patch titled hwmon: (nct7802) Fix for temp6 (PECI1) processed even if PECI1 disabled to the 5.4-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: hwmon-nct7802-fix-for-temp6-peci1-processed-even-if-peci1-disabled.patch and it can be found in the queue-5.4 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From 54685abe660a59402344d5045ce08c43c6a5ac42 Mon Sep 17 00:00:00 2001 From: Gilles Buloz <Gilles.Buloz@xxxxxxxxxxx> Date: Mon, 24 Jul 2023 08:04:44 +0000 Subject: hwmon: (nct7802) Fix for temp6 (PECI1) processed even if PECI1 disabled From: Gilles Buloz <Gilles.Buloz@xxxxxxxxxxx> commit 54685abe660a59402344d5045ce08c43c6a5ac42 upstream. Because of hex value 0x46 used instead of decimal 46, the temp6 (PECI1) temperature is always declared visible and then displayed even if disabled in the chip Signed-off-by: Gilles Buloz <gilles.buloz@xxxxxxxxxxx> Link: https://lore.kernel.org/r/DU0PR10MB62526435ADBC6A85243B90E08002A@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx Fixes: fcdc5739dce03 ("hwmon: (nct7802) add temperature sensor type attribute") Cc: stable@xxxxxxxxxxxxxxx Signed-off-by: Guenter Roeck <linux@xxxxxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- drivers/hwmon/nct7802.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/drivers/hwmon/nct7802.c +++ b/drivers/hwmon/nct7802.c @@ -708,7 +708,7 @@ static umode_t nct7802_temp_is_visible(s if (index >= 38 && index < 46 && !(reg & 0x01)) /* PECI 0 */ return 0; - if (index >= 0x46 && (!(reg & 0x02))) /* PECI 1 */ + if (index >= 46 && !(reg & 0x02)) /* PECI 1 */ return 0; return attr->mode; Patches currently in stable-queue which might be from Gilles.Buloz@xxxxxxxxxxx are queue-5.4/hwmon-nct7802-fix-for-temp6-peci1-processed-even-if-peci1-disabled.patch