Patch "bus: imx-weim: fix valid range check" has been added to the 6.6-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

    bus: imx-weim: fix valid range check

to the 6.6-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:
     bus-imx-weim-fix-valid-range-check.patch
and it can be found in the queue-6.6 subdirectory.

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



commit 9093055e6ff71dd97d5f6b61e13908f7a254b905
Author: Lucas Stach <l.stach@xxxxxxxxxxxxxx>
Date:   Fri Jan 19 19:50:26 2024 +0100

    bus: imx-weim: fix valid range check
    
    [ Upstream commit 7bca405c986075c99b9f729d3587b5c45db39d01 ]
    
    When the range parsing was open-coded the number of u32 entries to
    parse had to be a multiple of 4 and the driver checks this. With
    the range parsing converted to the range parser the counting changes
    from individual u32 entries to a complete range, so the check must
    not reject counts not divisible by 4.
    
    Fixes: 2a88e4792c6d ("bus: imx-weim: Remove open coded "ranges" parsing")
    Signed-off-by: Lucas Stach <l.stach@xxxxxxxxxxxxxx>
    Signed-off-by: Shawn Guo <shawnguo@xxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/bus/imx-weim.c b/drivers/bus/imx-weim.c
index 42c9386a7b423..f9fd1582f150d 100644
--- a/drivers/bus/imx-weim.c
+++ b/drivers/bus/imx-weim.c
@@ -117,7 +117,7 @@ static int imx_weim_gpr_setup(struct platform_device *pdev)
 		i++;
 	}
 
-	if (i == 0 || i % 4)
+	if (i == 0)
 		goto err;
 
 	for (i = 0; i < ARRAY_SIZE(gprvals); i++) {




[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