]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
leds: qcom-lpg: Check the return value of regmap_bulk_write()
authorHaotian Zhang <vulab@iscas.ac.cn>
Thu, 8 Jan 2026 17:51:33 +0000 (01:51 +0800)
committerLee Jones <lee@kernel.org>
Wed, 4 Feb 2026 09:21:05 +0000 (09:21 +0000)
The lpg_lut_store() function currently ignores the return value of
regmap_bulk_write() and always returns 0. This can cause hardware write
failures to go undetected, leading the caller to believe LUT programming
succeeded when it may have failed.

Check the return value of regmap_bulk_write() in lpg_lut_store and return
the error to the caller on failure.

Fixes: 24e2d05d1b68 ("leds: Add driver for Qualcomm LPG")
Signed-off-by: Haotian Zhang <vulab@iscas.ac.cn>
Link: https://patch.msgid.link/20260108175133.638-1-vulab@iscas.ac.cn
Signed-off-by: Lee Jones <lee@kernel.org>
drivers/leds/rgb/leds-qcom-lpg.c

index 72da0bf469ad8bffb44520a2253f6c40ce328626..f54851dfb42fceb312244c71d13c4d2ceaaa5b07 100644 (file)
@@ -369,7 +369,7 @@ static int lpg_lut_store(struct lpg *lpg, struct led_pattern *pattern,
 {
        unsigned int idx;
        u16 val;
-       int i;
+       int i, ret;
 
        idx = bitmap_find_next_zero_area(lpg->lut_bitmap, lpg->lut_size,
                                         0, len, 0);
@@ -379,8 +379,10 @@ static int lpg_lut_store(struct lpg *lpg, struct led_pattern *pattern,
        for (i = 0; i < len; i++) {
                val = pattern[i].brightness;
 
-               regmap_bulk_write(lpg->map, lpg->lut_base + LPG_LUT_REG(idx + i),
-                                 &val, sizeof(val));
+               ret = regmap_bulk_write(lpg->map, lpg->lut_base + LPG_LUT_REG(idx + i),
+                                       &val, sizeof(val));
+               if (ret)
+                       return ret;
        }
 
        bitmap_set(lpg->lut_bitmap, idx, len);