mirror of https://gitee.com/openkylin/linux.git
ASoC: bfin: use dev_err to print error log instead of dev_dbg
Signed-off-by: Scott Jiang <scott.jiang.linux@gmail.com> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
This commit is contained in:
parent
3528f27a5d
commit
f4a6348391
|
@ -256,9 +256,9 @@ static irqreturn_t sport_err_irq(int irq, void *dev_id)
|
||||||
struct device *dev = &sport->pdev->dev;
|
struct device *dev = &sport->pdev->dev;
|
||||||
|
|
||||||
if (sport->tx_regs->spctl & SPORT_CTL_DERRPRI)
|
if (sport->tx_regs->spctl & SPORT_CTL_DERRPRI)
|
||||||
dev_dbg(dev, "sport error: TUVF\n");
|
dev_err(dev, "sport error: TUVF\n");
|
||||||
if (sport->rx_regs->spctl & SPORT_CTL_DERRPRI)
|
if (sport->rx_regs->spctl & SPORT_CTL_DERRPRI)
|
||||||
dev_dbg(dev, "sport error: ROVF\n");
|
dev_err(dev, "sport error: ROVF\n");
|
||||||
|
|
||||||
return IRQ_HANDLED;
|
return IRQ_HANDLED;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue