Hi Jerome, On Wed, Apr 17, 2019 at 10:44 PM Jerome Brunet <jbrunet@xxxxxxxxxxxx> wrote: > > There is no reason for another device to request the MMC irq. It should > only be used the MMC device. > > Signed-off-by: Jerome Brunet <jbrunet@xxxxxxxxxxxx> > --- > drivers/mmc/host/meson-gx-mmc.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/mmc/host/meson-gx-mmc.c b/drivers/mmc/host/meson-gx-mmc.c > index 8b690ecde4c5..3df50b53f834 100644 > --- a/drivers/mmc/host/meson-gx-mmc.c > +++ b/drivers/mmc/host/meson-gx-mmc.c > @@ -1328,7 +1328,7 @@ static int meson_mmc_probe(struct platform_device *pdev) > host->regs + SD_EMMC_IRQ_EN); > > ret = request_threaded_irq(host->irq, meson_mmc_irq, > - meson_mmc_irq_thread, IRQF_SHARED, > + meson_mmc_irq_thread, IRQF_ONESHOT, > dev_name(&pdev->dev), host); the commit message reads as if the intention is to remove the IRQF_SHARED flag. however, the commit message doesn't mention IRQF_ONESHOT (which was not set before). if you used IRQF_ONESHOT on purpose then please mention it in the patch description. Martin