Patch "clk: rs9: Fix DIF OEn bit placement on 9FGV0241" has been added to the 6.7-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

    clk: rs9: Fix DIF OEn bit placement on 9FGV0241

to the 6.7-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:
     clk-rs9-fix-dif-oen-bit-placement-on-9fgv0241.patch
and it can be found in the queue-6.7 subdirectory.

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



commit ea394ec47097a5f0b9cb738f521641f4a233f7ef
Author: Marek Vasut <marek.vasut+renesas@xxxxxxxxxxx>
Date:   Sun Nov 5 21:06:15 2023 +0100

    clk: rs9: Fix DIF OEn bit placement on 9FGV0241
    
    [ Upstream commit 29d861b5d29b6c80a887e93ad982cbbf4af2a06b ]
    
    On 9FGV0241, the DIF OE0 is BIT(1) and DIF OE1 is BIT(2), on the other
    chips like 9FGV0441 and 9FGV0841 DIF OE0 is BIT(0) and so on. Increment
    the index in BIT() macro instead of the result of BIT() macro to shift
    the bit correctly on 9FGV0241.
    
    Fixes: 603df193ec51 ("clk: rs9: Support device specific dif bit calculation")
    Signed-off-by: Marek Vasut <marek.vasut+renesas@xxxxxxxxxxx>
    Link: https://lore.kernel.org/r/20231105200642.62792-1-marek.vasut+renesas@xxxxxxxxxxx
    Reviewed-by: Alexander Stein <alexander.stein@xxxxxxxxxxxxxxx>
    Signed-off-by: Stephen Boyd <sboyd@xxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/clk/clk-renesas-pcie.c b/drivers/clk/clk-renesas-pcie.c
index 380245f635d6..6606aba253c5 100644
--- a/drivers/clk/clk-renesas-pcie.c
+++ b/drivers/clk/clk-renesas-pcie.c
@@ -163,7 +163,7 @@ static u8 rs9_calc_dif(const struct rs9_driver_data *rs9, int idx)
 	enum rs9_model model = rs9->chip_info->model;
 
 	if (model == RENESAS_9FGV0241)
-		return BIT(idx) + 1;
+		return BIT(idx + 1);
 	else if (model == RENESAS_9FGV0441)
 		return BIT(idx);
 




[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