Hi Vinod, On 07/05/2016 04:54 PM, Vinod Koul wrote: > dmaengine device should explicitly call devm_free_irq() when using > devm_reqister_irq(). You mean devm_request_irq(), right? The whole point about these devm_* functions is that the resources claimed by them are automatically freed on driver removal, so I wonder why it is necessary to call them explicitly for this driver. What am I missing? Thanks, Daniel > > The irq is still ON when devices remove is executed and irq should be > quiesced before remove is completed. > > Signed-off-by: Vinod Koul <vinod.koul@xxxxxxxxx> > Cc: Zhangfei Gao <zhangfei.gao@xxxxxxxxxx> > Cc: Daniel Mack <zonque@xxxxxxxxx> > --- > drivers/dma/mmp_pdma.c | 17 +++++++++++++++++ > 1 file changed, 17 insertions(+) > > diff --git a/drivers/dma/mmp_pdma.c b/drivers/dma/mmp_pdma.c > index 56f1fd68b620..975bc4bf525b 100644 > --- a/drivers/dma/mmp_pdma.c > +++ b/drivers/dma/mmp_pdma.c > @@ -931,6 +931,23 @@ static void dma_do_tasklet(unsigned long data) > static int mmp_pdma_remove(struct platform_device *op) > { > struct mmp_pdma_device *pdev = platform_get_drvdata(op); > + struct mmp_pdma_phy *phy; > + int i, irq = 0, irq_num = 0; > + > + > + irq = platform_get_irq(op, 0); > + devm_free_irq(&op->dev, irq, pdev); > + > + for (i = 0; i < pdev->dma_channels; i++) { > + if (platform_get_irq(op, i) > 0) > + irq_num++; > + } > + > + for (i = 0; i < pdev->dma_channels; i++) { > + phy = &pdev->phy[i]; > + irq = (irq_num != pdev->dma_channels) ? 0 : platform_get_irq(op, i); > + devm_free_irq(&op->dev, irq, phy); > + } > > dma_async_device_unregister(&pdev->device); > return 0; > -- To unsubscribe from this list: send the line "unsubscribe dmaengine" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html