All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] asoc: bfin: use dev_err to print error log instead of dev_dbg
@ 2012-06-21 17:51 Scott Jiang
  2012-06-21 10:08 ` Mark Brown
  0 siblings, 1 reply; 8+ messages in thread
From: Scott Jiang @ 2012-06-21 17:51 UTC (permalink / raw)
  To: Mark Brown, alsa-devel, uclinux-dist-devel; +Cc: Scott Jiang

Signed-off-by: Scott Jiang <scott.jiang.linux@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
@@ -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;
 }
-- 
1.7.0.4

^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2012-06-21 14:18 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-06-21 17:51 [PATCH] asoc: bfin: use dev_err to print error log instead of dev_dbg Scott Jiang
2012-06-21 10:08 ` Mark Brown
2012-06-21 10:29   ` Scott Jiang
2012-06-21 10:47     ` Mark Brown
2012-06-21 14:50       ` Patch subject line (was: Re: [PATCH] asoc: bfin: use dev_err to print error log instead of dev_dbg) David Henningsson
2012-06-21 15:22         ` Mark Brown
2012-06-21 15:31           ` Takashi Iwai
2012-06-21 15:39             ` Mark Brown

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.