microblaze: Remove eprintk macro
authorMichal Simek <monstr@monstr.eu>
Thu, 10 Nov 2011 12:38:54 +0000 (13:38 +0100)
committerMichal Simek <monstr@monstr.eu>
Thu, 5 Jan 2012 07:34:26 +0000 (08:34 +0100)
eprintk macro was used for printing early_printk
messages. Early console registration was changed
that's why this is not needed.

Signed-off-by: Michal Simek <monstr@monstr.eu>
arch/microblaze/include/asm/setup.h
arch/microblaze/kernel/setup.c
arch/microblaze/kernel/timer.c

index 904e5ef6a11b2e958f0b33c29b4f7d3794cecb38..6c72ed7eba9854c5b003555214d0c1376a544684 100644 (file)
@@ -26,12 +26,6 @@ int setup_early_printk(char *opt);
 void remap_early_printk(void);
 void disable_early_printk(void);
 
-#if defined(CONFIG_EARLY_PRINTK)
-#define eprintk early_printk
-#else
-#define eprintk printk
-#endif
-
 void heartbeat(void);
 void setup_heartbeat(void);
 
index 0e654a12d37e18136caa965bfbbe729f87349d60..604cd9dd133362712e5220510be83be134d96ec1 100644 (file)
@@ -145,32 +145,32 @@ void __init machine_early_init(const char *cmdline, unsigned int ram,
        setup_early_printk(NULL);
 #endif
 
-       eprintk("Ramdisk addr 0x%08x, ", ram);
+       printk("Ramdisk addr 0x%08x, ", ram);
        if (fdt)
-               eprintk("FDT at 0x%08x\n", fdt);
+               printk("FDT at 0x%08x\n", fdt);
        else
-               eprintk("Compiled-in FDT at 0x%08x\n",
+               printk("Compiled-in FDT at 0x%08x\n",
                                        (unsigned int)_fdt_start);
 
 #ifdef CONFIG_MTD_UCLINUX
-       eprintk("Found romfs @ 0x%08x (0x%08x)\n",
+       printk("Found romfs @ 0x%08x (0x%08x)\n",
                        romfs_base, romfs_size);
-       eprintk("#### klimit %p ####\n", old_klimit);
+       printk("#### klimit %p ####\n", old_klimit);
        BUG_ON(romfs_size < 0); /* What else can we do? */
 
-       eprintk("Moved 0x%08x bytes from 0x%08x to 0x%08x\n",
+       printk("Moved 0x%08x bytes from 0x%08x to 0x%08x\n",
                        romfs_size, romfs_base, (unsigned)&_ebss);
 
-       eprintk("New klimit: 0x%08x\n", (unsigned)klimit);
+       printk("New klimit: 0x%08x\n", (unsigned)klimit);
 #endif
 
 #if CONFIG_XILINX_MICROBLAZE0_USE_MSR_INSTR
        if (msr)
-               eprintk("!!!Your kernel has setup MSR instruction but "
+               printk("!!!Your kernel has setup MSR instruction but "
                                "CPU don't have it %x\n", msr);
 #else
        if (!msr)
-               eprintk("!!!Your kernel not setup MSR instruction but "
+               printk("!!!Your kernel not setup MSR instruction but "
                                "CPU have it %x\n", msr);
 #endif
 
index 52e3eaf7f304323276ab1d46bbfb09c50f7daa21..3cb0bf640135c5ced740bc2af6e0b6e819963792 100644 (file)
@@ -267,7 +267,7 @@ void __init time_init(void)
        timer_num = be32_to_cpup(of_get_property(timer,
                                                "xlnx,one-timer-only", NULL));
        if (timer_num) {
-               eprintk(KERN_EMERG "Please enable two timers in HW\n");
+               printk(KERN_EMERG "Please enable two timers in HW\n");
                BUG();
        }