diff options
author | Sascha Hauer <[email protected]> | 2022-04-14 18:22:49 +0200 |
---|---|---|
committer | Mark Brown <[email protected]> | 2022-04-19 12:06:31 +0100 |
commit | a69d7f1bd373205bf539b9762423c8d526b9b9cb (patch) | |
tree | 1668698e2e1838fdbfaa677975b4a1d966a04e7e | |
parent | cc5ef57d130d78c8c30062eef140c01ee47f346e (diff) |
ASoC: fsl_micfil: Remove debug message
The micfil driver prints out the IRQ numbers for each interrupt at error
level. This information is useful for debugging at best, remove it.
Signed-off-by: Sascha Hauer <[email protected]>
Acked-by: Shengjiu Wang <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Mark Brown <[email protected]>
-rw-r--r-- | sound/soc/fsl/fsl_micfil.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sound/soc/fsl/fsl_micfil.c b/sound/soc/fsl/fsl_micfil.c index 8c7b15dbd1d4..cd85c8714f97 100644 --- a/sound/soc/fsl/fsl_micfil.c +++ b/sound/soc/fsl/fsl_micfil.c @@ -597,7 +597,6 @@ static int fsl_micfil_probe(struct platform_device *pdev) /* get IRQs */ for (i = 0; i < MICFIL_IRQ_LINES; i++) { micfil->irq[i] = platform_get_irq(pdev, i); - dev_err(&pdev->dev, "GET IRQ: %d\n", micfil->irq[i]); if (micfil->irq[i] < 0) return micfil->irq[i]; } |