Patch "mfd: axp20x: Do not sleep in the power off handler" has been added to the 6.0-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

    mfd: axp20x: Do not sleep in the power off handler

to the 6.0-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:
     mfd-axp20x-do-not-sleep-in-the-power-off-handler.patch
and it can be found in the queue-6.0 subdirectory.

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



commit 96c973a15f558f5aba992691fdcfe610b8476155
Author: Samuel Holland <samuel@xxxxxxxxxxxx>
Date:   Sat Nov 5 16:29:09 2022 -0500

    mfd: axp20x: Do not sleep in the power off handler
    
    [ Upstream commit 3f37d4f695cff180033254b9ed5adc8ab927cba9 ]
    
    Since commit 856c288b0039 ("ARM: Use do_kernel_power_off()"), the
    function axp20x_power_off() now runs inside a RCU read-side critical
    section, so it is not allowed to call msleep(). Use mdelay() instead.
    
    Fixes: 856c288b0039 ("ARM: Use do_kernel_power_off()")
    Signed-off-by: Samuel Holland <samuel@xxxxxxxxxxxx>
    Reviewed-by: Dmitry Osipenko <dmitry.osipenko@xxxxxxxxxxxxx>
    Signed-off-by: Lee Jones <lee@xxxxxxxxxx>
    Link: https://lore.kernel.org/r/20221105212909.6526-1-samuel@xxxxxxxxxxxx
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/mfd/axp20x.c b/drivers/mfd/axp20x.c
index 88a212a8168c..880c41fa7021 100644
--- a/drivers/mfd/axp20x.c
+++ b/drivers/mfd/axp20x.c
@@ -842,7 +842,7 @@ static void axp20x_power_off(void)
 		     AXP20X_OFF);
 
 	/* Give capacitors etc. time to drain to avoid kernel panic msg. */
-	msleep(500);
+	mdelay(500);
 }
 
 int axp20x_match_device(struct axp20x_dev *axp20x)



[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