powerpc/85xx: Remove DBG() macro
authorChristophe Leroy <christophe.leroy@csgroup.eu>
Sat, 8 Apr 2023 14:01:10 +0000 (16:01 +0200)
committerMichael Ellerman <mpe@ellerman.id.au>
Thu, 20 Apr 2023 00:20:50 +0000 (10:20 +1000)
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: Christophe Leroy <christophe.leroy@csgroup.eu>
Signed-off-by: Pali Rohár <pali@kernel.org>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Link: https://msgid.link/20230408140122.25293-2-pali@kernel.org
arch/powerpc/platforms/85xx/mpc85xx_ds.c
arch/powerpc/platforms/85xx/mpc85xx_mds.c
arch/powerpc/platforms/85xx/mpc85xx_rdb.c

index c474da3eeea8caf1b88595d624fcb2f6bdb92861..25edfe1b8ae10c0423854299b067d884e33c87b2 100644 (file)
 
 #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
 static void mpc85xx_8259_cascade(struct irq_desc *desc)
 {
@@ -98,7 +90,7 @@ void __init mpc85xx_ds_pic_init(void)
                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);
        of_node_put(cascade_node);
index 28a04928250f921063bb52a57c79930d69338603..0546f19416c29cbb721dc8a63af09919445d0e93 100644 (file)
 
 #include "mpc85xx.h"
 
-#undef DEBUG
-#ifdef DEBUG
-#define DBG(fmt...) udbg_printf(fmt)
-#else
-#define DBG(fmt...)
-#endif
-
 #if IS_BUILTIN(CONFIG_PHYLIB)
 
 #define MV88E1111_SCR  0x10
index aa24793ad25c90e8a3d41f116b05b0532efe7e9c..acc4145adcf7532a33bda326d027db5fe2b93944 100644 (file)
 
 #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)
 {
        struct mpic *mpic;