Patch "backlight: qcom-wled: Use sink_addr for sync toggle" has been added to the 5.10-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    backlight: qcom-wled: Use sink_addr for sync toggle

to the 5.10-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:
     backlight-qcom-wled-use-sink_addr-for-sync-toggle.patch
and it can be found in the queue-5.10 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit aba4f3cddf551a849a29a595fae00291e920b6a8
Author: Obeida Shamoun <oshmoun100@xxxxxxxxxxxxxx>
Date:   Sun Mar 14 11:11:10 2021 +0100

    backlight: qcom-wled: Use sink_addr for sync toggle
    
    [ Upstream commit cdfd4c689e2a52c313b35ddfc1852ff274f91acb ]
    
    WLED3_SINK_REG_SYNC is, as the name implies, a sink register offset.
    Therefore, use the sink address as base instead of the ctrl address.
    
    This fixes the sync toggle on wled4, which can be observed by the fact
    that adjusting brightness now works.
    
    It has no effect on wled3 because sink and ctrl base addresses are the
    same.  This allows adjusting the brightness without having to disable
    then reenable the module.
    
    Signed-off-by: Obeida Shamoun <oshmoun100@xxxxxxxxxxxxxx>
    Signed-off-by: Konrad Dybcio <konrad.dybcio@xxxxxxxxxxxxxx>
    Signed-off-by: Marijn Suijten <marijn.suijten@xxxxxxxxxxxxxx>
    Reviewed-by: Daniel Thompson <daniel.thompson@xxxxxxxxxx>
    Acked-by: Kiran Gunda <kgunda@xxxxxxxxxxxxxx>
    Signed-off-by: Lee Jones <lee.jones@xxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/video/backlight/qcom-wled.c b/drivers/video/backlight/qcom-wled.c
index 3bc7800eb0a9..83a187fdaa1d 100644
--- a/drivers/video/backlight/qcom-wled.c
+++ b/drivers/video/backlight/qcom-wled.c
@@ -336,13 +336,13 @@ static int wled3_sync_toggle(struct wled *wled)
 	unsigned int mask = GENMASK(wled->max_string_count - 1, 0);
 
 	rc = regmap_update_bits(wled->regmap,
-				wled->ctrl_addr + WLED3_SINK_REG_SYNC,
+				wled->sink_addr + WLED3_SINK_REG_SYNC,
 				mask, mask);
 	if (rc < 0)
 		return rc;
 
 	rc = regmap_update_bits(wled->regmap,
-				wled->ctrl_addr + WLED3_SINK_REG_SYNC,
+				wled->sink_addr + WLED3_SINK_REG_SYNC,
 				mask, WLED3_SINK_REG_SYNC_CLEAR);
 
 	return rc;



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux