]> git.ipfire.org Git - thirdparty/kernel/stable-queue.git/commitdiff
Fixes for 5.10
authorSasha Levin <sashal@kernel.org>
Sun, 25 Dec 2022 23:49:41 +0000 (18:49 -0500)
committerSasha Levin <sashal@kernel.org>
Sun, 25 Dec 2022 23:49:41 +0000 (18:49 -0500)
Signed-off-by: Sasha Levin <sashal@kernel.org>
queue-5.10/hwmon-jc42-fix-missing-unlock-on-error-in-jc42_write.patch [new file with mode: 0644]
queue-5.10/series

diff --git a/queue-5.10/hwmon-jc42-fix-missing-unlock-on-error-in-jc42_write.patch b/queue-5.10/hwmon-jc42-fix-missing-unlock-on-error-in-jc42_write.patch
new file mode 100644 (file)
index 0000000..8fa70fb
--- /dev/null
@@ -0,0 +1,40 @@
+From e27c1764ecc0f87e331e8a8600048c8ae9bc6ef5 Mon Sep 17 00:00:00 2001
+From: Sasha Levin <sashal@kernel.org>
+Date: Thu, 27 Oct 2022 14:29:31 +0800
+Subject: hwmon: (jc42) Fix missing unlock on error in jc42_write()
+
+From: Yang Yingliang <yangyingliang@huawei.com>
+
+[ Upstream commit b744db17abf6a2efc2bfa80870cc88e9799a8ccc ]
+
+Add the missing unlock before return from function jc42_write()
+in the error handling case.
+
+Fixes: 37dedaee8bc6 ("hwmon: (jc42) Convert register access and caching to regmap/regcache")
+Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
+Reviewed-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com>
+Link: https://lore.kernel.org/r/20221027062931.598247-1-yangyingliang@huawei.com
+Reported-by: kernel test robot <lkp@intel.com>
+Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
+Signed-off-by: Guenter Roeck <linux@roeck-us.net>
+Signed-off-by: Sasha Levin <sashal@kernel.org>
+---
+ drivers/hwmon/jc42.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/drivers/hwmon/jc42.c b/drivers/hwmon/jc42.c
+index 5240bfdfcf2e..52f341d46029 100644
+--- a/drivers/hwmon/jc42.c
++++ b/drivers/hwmon/jc42.c
+@@ -340,7 +340,7 @@ static int jc42_write(struct device *dev, enum hwmon_sensor_types type,
+               ret = regmap_read(data->regmap, JC42_REG_TEMP_CRITICAL,
+                                 &regval);
+               if (ret)
+-                      return ret;
++                      break;
+               /*
+                * JC42.4 compliant chips only support four hysteresis values.
+-- 
+2.35.1
+
index 9bbe7e5df54f7d04f35093468267388ec6b69736..79b588cd1f0f5fffe1875964ae4102af35a34fc4 100644 (file)
@@ -543,3 +543,4 @@ drm-fsl-dcu-fix-return-type-of-fsl_dcu_drm_connector.patch
 drm-sti-fix-return-type-of-sti_-dvo-hda-hdmi-_connec.patch
 orangefs-fix-kmemleak-in-orangefs_prepare_debugfs_he.patch
 orangefs-fix-kmemleak-in-orangefs_-kernel-client-_de.patch
+hwmon-jc42-fix-missing-unlock-on-error-in-jc42_write.patch