ARM: 5876/1: ep93xx: use pr_fmt in dma-m2p.c
Use pr_fmt to prefix kernel output with the module name. Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com> Acked-by: Ryan Mallon <ryan@bluewatersys.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
This commit is contained in:
parent
99acbb90c2
commit
f3f1882ca7
@ -28,6 +28,8 @@
|
|||||||
* with this implementation.
|
* with this implementation.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#define pr_fmt(fmt) "ep93xx " KBUILD_MODNAME ": " fmt
|
||||||
|
|
||||||
#include <linux/kernel.h>
|
#include <linux/kernel.h>
|
||||||
#include <linux/clk.h>
|
#include <linux/clk.h>
|
||||||
#include <linux/err.h>
|
#include <linux/err.h>
|
||||||
@ -173,7 +175,7 @@ static irqreturn_t m2p_irq(int irq, void *dev_id)
|
|||||||
|
|
||||||
switch (m2p_channel_state(ch)) {
|
switch (m2p_channel_state(ch)) {
|
||||||
case STATE_IDLE:
|
case STATE_IDLE:
|
||||||
pr_crit("m2p_irq: dma interrupt without a dma buffer\n");
|
pr_crit("dma interrupt without a dma buffer\n");
|
||||||
BUG();
|
BUG();
|
||||||
break;
|
break;
|
||||||
|
|
||||||
@ -197,7 +199,7 @@ static irqreturn_t m2p_irq(int irq, void *dev_id)
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case STATE_NEXT:
|
case STATE_NEXT:
|
||||||
pr_crit("m2p_irq: dma interrupt while next\n");
|
pr_crit("dma interrupt while next\n");
|
||||||
BUG();
|
BUG();
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user