mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] dmaengine: printk(KERN_ERR ...) -> pr_err
@ 2012-07-18 11:34 Andy Shevchenko
  2012-07-18 16:51 ` [PATCH] dmaengine: Cleanup logging messages Joe Perches
  0 siblings, 1 reply; 4+ messages in thread
From: Andy Shevchenko @ 2012-07-18 11:34 UTC (permalink / raw)
  To: Vinod Koul, Dan Williams, linux-kernel; +Cc: Andy Shevchenko

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
---
 drivers/dma/dmaengine.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/dma/dmaengine.c b/drivers/dma/dmaengine.c
index 26ac0f8..071bd73 100644
--- a/drivers/dma/dmaengine.c
+++ b/drivers/dma/dmaengine.c
@@ -262,7 +262,7 @@ enum dma_status dma_sync_wait(struct dma_chan *chan, dma_cookie_t cookie)
 	do {
 		status = dma_async_is_tx_complete(chan, cookie, NULL, NULL);
 		if (time_after_eq(jiffies, dma_sync_wait_timeout)) {
-			printk(KERN_ERR "dma_sync_wait_timeout!\n");
+			pr_err("dma_sync_wait_timeout!\n");
 			return DMA_ERROR;
 		}
 	} while (status == DMA_IN_PROGRESS);
-- 
1.7.10.4


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

end of thread, other threads:[~2012-07-20  6:41 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-07-18 11:34 [PATCH] dmaengine: printk(KERN_ERR ...) -> pr_err Andy Shevchenko
2012-07-18 16:51 ` [PATCH] dmaengine: Cleanup logging messages Joe Perches
2012-07-18 17:09   ` Andy Shevchenko
2012-07-20  6:41   ` Vinod Koul

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome