diff options
| author | Ingo Molnar <mingo@elte.hu> | 2009-08-24 12:25:44 +0200 | 
|---|---|---|
| committer | Ingo Molnar <mingo@elte.hu> | 2009-08-24 12:25:54 +0200 | 
| commit | 5f9ece02401116b29eb04396b99ea092acb75dd8 (patch) | |
| tree | e10386e2dc63c275646b4eb0bed857da7bf86c6a /arch/microblaze/kernel/setup.c | |
| parent | 9f51e24ee8b5a1595b6a5ac0c2be278a16488e75 (diff) | |
| parent | 422bef879e84104fee6dc68ded0e371dbeb5f88e (diff) | |
| download | olio-linux-3.10-5f9ece02401116b29eb04396b99ea092acb75dd8.tar.xz olio-linux-3.10-5f9ece02401116b29eb04396b99ea092acb75dd8.zip  | |
Merge commit 'v2.6.31-rc7' into x86/cleanups
Merge reason: we were on -rc1 before - go up to -rc7
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/microblaze/kernel/setup.c')
| -rw-r--r-- | arch/microblaze/kernel/setup.c | 8 | 
1 files changed, 6 insertions, 2 deletions
diff --git a/arch/microblaze/kernel/setup.c b/arch/microblaze/kernel/setup.c index 8709bea0960..2a97bf513b6 100644 --- a/arch/microblaze/kernel/setup.c +++ b/arch/microblaze/kernel/setup.c @@ -138,8 +138,12 @@ void __init machine_early_init(const char *cmdline, unsigned int ram,  	setup_early_printk(NULL);  #endif -	early_printk("Ramdisk addr 0x%08x, FDT 0x%08x\n", ram, fdt); -	printk(KERN_NOTICE "Found FDT at 0x%08x\n", fdt); +	early_printk("Ramdisk addr 0x%08x, ", ram); +	if (fdt) +		early_printk("FDT at 0x%08x\n", fdt); +	else +		early_printk("Compiled-in FDT at 0x%08x\n", +					(unsigned int)_fdt_start);  #ifdef CONFIG_MTD_UCLINUX  	early_printk("Found romfs @ 0x%08x (0x%08x)\n",  |