[PATCH 1/4] leds: flash: mt6360: Fix the wrong enable_reg in multicolor brightness set

From: cy_huang
Date: Thu Apr 28 2022 - 05:46:28 EST


From: ChiYuan Huang <cy_huang@xxxxxxxxxxx>

Fix the wrong enable_reg in multicolor brightness set.

Signed-off-by: ChiYuan Huang <cy_huang@xxxxxxxxxxx>
---
drivers/leds/flash/leds-mt6360.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/leds/flash/leds-mt6360.c b/drivers/leds/flash/leds-mt6360.c
index e1066a5..712cd46 100644
--- a/drivers/leds/flash/leds-mt6360.c
+++ b/drivers/leds/flash/leds-mt6360.c
@@ -115,7 +115,8 @@ static int mt6360_mc_brightness_set(struct led_classdev *lcdev,
struct mc_subled *subled = mccdev->subled_info + i;

real_bright = min(lcdev->max_brightness, subled->brightness);
- ret = regmap_update_bits(priv->regmap, MT6360_REG_ISNK(i),
+ ret = regmap_update_bits(priv->regmap,
+ MT6360_REG_ISNK(subled->channel),
MT6360_ISNK_MASK, real_bright);
if (ret)
goto out;
--
2.7.4