|
@@ -862,7 +862,7 @@ static int mmp_pdma_chan_init(struct mmp_pdma_device *pdev,
|
|
|
|
|
|
if (irq) {
|
|
|
ret = devm_request_irq(pdev->dev, irq,
|
|
|
- mmp_pdma_chan_handler, IRQF_DISABLED, "pdma", phy);
|
|
|
+ mmp_pdma_chan_handler, 0, "pdma", phy);
|
|
|
if (ret) {
|
|
|
dev_err(pdev->dev, "channel request irq fail!\n");
|
|
|
return ret;
|
|
@@ -969,7 +969,7 @@ static int mmp_pdma_probe(struct platform_device *op)
|
|
|
/* all chan share one irq, demux inside */
|
|
|
irq = platform_get_irq(op, 0);
|
|
|
ret = devm_request_irq(pdev->dev, irq,
|
|
|
- mmp_pdma_int_handler, IRQF_DISABLED, "pdma", pdev);
|
|
|
+ mmp_pdma_int_handler, 0, "pdma", pdev);
|
|
|
if (ret)
|
|
|
return ret;
|
|
|
}
|