21 Jun 2012 19:51
[PATCH] asoc: bfin: use dev_err to print error log instead of dev_dbg
Scott Jiang <scott.jiang.linux <at> gmail.com>
2012-06-21 17:51:58 GMT
2012-06-21 17:51:58 GMT
Signed-off-by: Scott Jiang <scott.jiang.linux <at> gmail.com> --- sound/soc/blackfin/bf6xx-sport.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sound/soc/blackfin/bf6xx-sport.c b/sound/soc/blackfin/bf6xx-sport.c index f19a72b..318c5ba 100644 --- a/sound/soc/blackfin/bf6xx-sport.c +++ b/sound/soc/blackfin/bf6xx-sport.c <at> <at> -256,9 +256,9 <at> <at> 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; } -- -- 1.7.0.4
RSS Feed