From: Eliav Farber Date: Thu, 8 Sep 2022 15:24:31 +0000 (+0000) Subject: hwmon: (mr75203) update pvt->v_num and vm_num to the actual number of used sensors X-Git-Tag: v6.1-rc5~451^2~4 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bb9195bd6664d94d71647631593e09f705ff5edd;p=platform%2Fkernel%2Flinux-starfive.git hwmon: (mr75203) update pvt->v_num and vm_num to the actual number of used sensors This issue is relevant when "intel,vm-map" is set in device-tree, and defines a lower number of VMs than actually supported. This change is needed for all places that use pvt->v_num or vm_num later on in the code. Fixes: 9d823351a337 ("hwmon: Add hardware monitoring driver for Moortec MR75203 PVT controller") Signed-off-by: Eliav Farber Reviewed-by: Andy Shevchenko Link: https://lore.kernel.org/r/20220908152449.35457-4-farbere@amazon.com Signed-off-by: Guenter Roeck --- diff --git a/drivers/hwmon/mr75203.c b/drivers/hwmon/mr75203.c index 8b72e8f..be02f32 100644 --- a/drivers/hwmon/mr75203.c +++ b/drivers/hwmon/mr75203.c @@ -595,6 +595,8 @@ static int mr75203_probe(struct platform_device *pdev) if (pvt->vm_idx[i] >= vm_num || pvt->vm_idx[i] == 0xff) { num = i; + pvt->v_num = i; + vm_num = i; break; } }