Patch "mfd: rn5t618: Fix IRQ trigger by changing it to level mode" has been added to the 5.13-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: rn5t618: Fix IRQ trigger by changing it to level mode

to the 5.13-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-rn5t618-fix-irq-trigger-by-changing-it-to-level-.patch
and it can be found in the queue-5.13 subdirectory.

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



commit c6f926749a10fb06fcbaf92f3b78b3330783c43c
Author: Andreas Kemnade <andreas@xxxxxxxxxxxx>
Date:   Sat May 15 22:55:18 2021 +0200

    mfd: rn5t618: Fix IRQ trigger by changing it to level mode
    
    [ Upstream commit a1649a5260631979c68e5b2012f60f90300e646f ]
    
    During more massive generation of interrupts, the IRQ got stuck,
    and the subdevices did not see any new interrupts. That happens
    especially at wonky USB supply in combination with ADC reads.
    To fix that trigger the IRQ at level low instead of falling edge.
    
    Fixes: 0c81604516af ("mfd: rn5t618: Add IRQ support")
    Signed-off-by: Andreas Kemnade <andreas@xxxxxxxxxxxx>
    Signed-off-by: Lee Jones <lee.jones@xxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/mfd/rn5t618.c b/drivers/mfd/rn5t618.c
index 6ed04e6dbc78..384acb459427 100644
--- a/drivers/mfd/rn5t618.c
+++ b/drivers/mfd/rn5t618.c
@@ -107,7 +107,7 @@ static int rn5t618_irq_init(struct rn5t618 *rn5t618)
 
 	ret = devm_regmap_add_irq_chip(rn5t618->dev, rn5t618->regmap,
 				       rn5t618->irq,
-				       IRQF_TRIGGER_FALLING | IRQF_ONESHOT,
+				       IRQF_TRIGGER_LOW | IRQF_ONESHOT,
 				       0, irq_chip, &rn5t618->irq_data);
 	if (ret)
 		dev_err(rn5t618->dev, "Failed to register IRQ chip\n");



[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