Commit a62ed960 authored by Fabio Estevam's avatar Fabio Estevam Committed by Mark Brown

ASoC: fsl_micfil: Do not pass irq numbers in comments

The IRQ numbers may change depending on the SoC, so do not pass the IRQ
numbers in the comments.
Signed-off-by: default avatarFabio Estevam <festevam@gmail.com>
Link: https://lore.kernel.org/r/20200518185448.6116-2-festevam@gmail.comSigned-off-by: default avatarMark Brown <broonie@kernel.org>
parent 1a90a659
......@@ -708,7 +708,7 @@ static int fsl_micfil_probe(struct platform_device *pdev)
if (of_property_read_bool(np, "fsl,shared-interrupt"))
irqflag = IRQF_SHARED;
/* Digital Microphone interface interrupt - IRQ 109 */
/* Digital Microphone interface interrupt */
ret = devm_request_irq(&pdev->dev, micfil->irq[0],
micfil_isr, irqflag,
micfil->name, micfil);
......@@ -718,7 +718,7 @@ static int fsl_micfil_probe(struct platform_device *pdev)
return ret;
}
/* Digital Microphone interface error interrupt - IRQ 110 */
/* Digital Microphone interface error interrupt */
ret = devm_request_irq(&pdev->dev, micfil->irq[1],
micfil_err_isr, irqflag,
micfil->name, micfil);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment