Commit 6faab5d7 authored by Christophe Leroy's avatar Christophe Leroy Committed by Michael Ellerman

powerpc/85xx: Remove DBG() macro

DBG() macro is defined at three places while used only
one time at one place.

Replace its only use by a pr_debug() and remove the macro.
Signed-off-by: default avatarChristophe Leroy <christophe.leroy@csgroup.eu>
Signed-off-by: default avatarPali Rohár <pali@kernel.org>
Signed-off-by: default avatarMichael Ellerman <mpe@ellerman.id.au>
Link: https://msgid.link/20230408140122.25293-2-pali@kernel.org
parent 3ce27143
...@@ -34,14 +34,6 @@ ...@@ -34,14 +34,6 @@
#include "mpc85xx.h" #include "mpc85xx.h"
#undef DEBUG
#ifdef DEBUG
#define DBG(fmt, args...) printk(KERN_ERR "%s: " fmt, __func__, ## args)
#else
#define DBG(fmt, args...)
#endif
#ifdef CONFIG_PPC_I8259 #ifdef CONFIG_PPC_I8259
static void mpc85xx_8259_cascade(struct irq_desc *desc) static void mpc85xx_8259_cascade(struct irq_desc *desc)
{ {
...@@ -98,7 +90,7 @@ void __init mpc85xx_ds_pic_init(void) ...@@ -98,7 +90,7 @@ void __init mpc85xx_ds_pic_init(void)
return; return;
} }
DBG("mpc85xxds: cascade mapped to irq %d\n", cascade_irq); pr_debug("mpc85xxds: cascade mapped to irq %d\n", cascade_irq);
i8259_init(cascade_node, 0); i8259_init(cascade_node, 0);
of_node_put(cascade_node); of_node_put(cascade_node);
......
...@@ -49,13 +49,6 @@ ...@@ -49,13 +49,6 @@
#include "mpc85xx.h" #include "mpc85xx.h"
#undef DEBUG
#ifdef DEBUG
#define DBG(fmt...) udbg_printf(fmt)
#else
#define DBG(fmt...)
#endif
#if IS_BUILTIN(CONFIG_PHYLIB) #if IS_BUILTIN(CONFIG_PHYLIB)
#define MV88E1111_SCR 0x10 #define MV88E1111_SCR 0x10
......
...@@ -29,15 +29,6 @@ ...@@ -29,15 +29,6 @@
#include "mpc85xx.h" #include "mpc85xx.h"
#undef DEBUG
#ifdef DEBUG
#define DBG(fmt, args...) printk(KERN_ERR "%s: " fmt, __func__, ## args)
#else
#define DBG(fmt, args...)
#endif
void __init mpc85xx_rdb_pic_init(void) void __init mpc85xx_rdb_pic_init(void)
{ {
struct mpic *mpic; struct mpic *mpic;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment