Skip to content

Commit

Permalink
ASoC: bfin: use dev_err to print error log instead of dev_dbg
Browse files Browse the repository at this point in the history
Signed-off-by: Scott Jiang <scott.jiang.linux@gmail.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
  • Loading branch information
Scott Jiang authored and Mark Brown committed Jun 21, 2012
1 parent 3528f27 commit f4a6348
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sound/soc/blackfin/bf6xx-sport.c
Original file line number Diff line number Diff line change
Expand Up @@ -256,9 +256,9 @@ static irqreturn_t sport_err_irq(int irq, void *dev_id)
struct device *dev = &sport->pdev->dev;

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)
dev_dbg(dev, "sport error: ROVF\n");
dev_err(dev, "sport error: ROVF\n");

return IRQ_HANDLED;
}
Expand Down

0 comments on commit f4a6348

Please sign in to comment.