MIPS: Ritually kill stupid printk.
authorRalf Baechle <ralf@linux-mips.org>
Thu, 5 Aug 2010 12:26:27 +0000 (13:26 +0100)
committerRalf Baechle <ralf@linux-mips.org>
Thu, 5 Aug 2010 12:26:27 +0000 (13:26 +0100)
This belongs into userland.

Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
arch/mips/alchemy/devboards/db1x00/board_setup.c
arch/mips/alchemy/devboards/pb1000/board_setup.c
arch/mips/alchemy/mtx-1/board_setup.c
arch/mips/alchemy/xxs1500/board_setup.c
arch/mips/emma/markeins/setup.c

index 50c9bef..9e45971 100644 (file)
@@ -79,7 +79,6 @@ static struct au1000_eth_platform_data eth0_pdata = {
 
 static void bosporus_power_off(void)
 {
-       printk(KERN_INFO "It's now safe to turn off power\n");
        while (1)
                asm volatile (".set mips3 ; wait ; .set mips0");
 }
index 46fdc8c..f6540ec 100644 (file)
@@ -47,7 +47,6 @@ static void board_reset(char *c)
 
 static void board_power_off(void)
 {
-       printk(KERN_ALERT "It's now safe to remove power\n");
        while (1)
                asm volatile (
                "       .set    mips32                                  \n"
index ff36973..6398fa9 100644 (file)
@@ -60,7 +60,6 @@ static void mtx1_reset(char *c)
 
 static void mtx1_power_off(void)
 {
-       printk(KERN_ALERT "It's now safe to remove power\n");
        while (1)
                asm volatile (
                "       .set    mips32                                  \n"
index 7868aea..b43c918 100644 (file)
@@ -42,7 +42,6 @@ static void xxs1500_reset(char *c)
 
 static void xxs1500_power_off(void)
 {
-       printk(KERN_ALERT "It's now safe to remove power\n");
        while (1)
                asm volatile (
                "       .set    mips32                                  \n"
index 9b3f51e..feceebc 100644 (file)
@@ -52,7 +52,6 @@ static void markeins_machine_halt(void)
 
 static void markeins_machine_power_off(void)
 {
-       printk("EMMA2RH Mark-eins halted. Please turn off the power.\n");
        markeins_led("poweroff.");
        while (1) ;
 }