diff options
-rw-r--r-- | arch/powerpc/kernel/setup_64.c | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/arch/powerpc/kernel/setup_64.c b/arch/powerpc/kernel/setup_64.c index 75d62d63fe68..32f4c320b9dc 100644 --- a/arch/powerpc/kernel/setup_64.c +++ b/arch/powerpc/kernel/setup_64.c | |||
@@ -525,21 +525,23 @@ void __init setup_system(void) | |||
525 | printk("Starting Linux PPC64 %s\n", init_utsname()->version); | 525 | printk("Starting Linux PPC64 %s\n", init_utsname()->version); |
526 | 526 | ||
527 | printk("-----------------------------------------------------\n"); | 527 | printk("-----------------------------------------------------\n"); |
528 | printk("ppc64_pft_size = 0x%llx\n", ppc64_pft_size); | 528 | printk("ppc64_pft_size = 0x%llx\n", ppc64_pft_size); |
529 | printk("physicalMemorySize = 0x%llx\n", memblock_phys_mem_size()); | 529 | printk("phys_mem_size = 0x%llx\n", memblock_phys_mem_size()); |
530 | |||
530 | if (ppc64_caches.dline_size != 0x80) | 531 | if (ppc64_caches.dline_size != 0x80) |
531 | printk("ppc64_caches.dcache_line_size = 0x%x\n", | 532 | printk("dcache_line_size = 0x%x\n", ppc64_caches.dline_size); |
532 | ppc64_caches.dline_size); | ||
533 | if (ppc64_caches.iline_size != 0x80) | 533 | if (ppc64_caches.iline_size != 0x80) |
534 | printk("ppc64_caches.icache_line_size = 0x%x\n", | 534 | printk("icache_line_size = 0x%x\n", ppc64_caches.iline_size); |
535 | ppc64_caches.iline_size); | 535 | |
536 | #ifdef CONFIG_PPC_STD_MMU_64 | 536 | #ifdef CONFIG_PPC_STD_MMU_64 |
537 | if (htab_address) | 537 | if (htab_address) |
538 | printk("htab_address = 0x%p\n", htab_address); | 538 | printk("htab_address = 0x%p\n", htab_address); |
539 | printk("htab_hash_mask = 0x%lx\n", htab_hash_mask); | 539 | |
540 | #endif /* CONFIG_PPC_STD_MMU_64 */ | 540 | printk("htab_hash_mask = 0x%lx\n", htab_hash_mask); |
541 | #endif | ||
542 | |||
541 | if (PHYSICAL_START > 0) | 543 | if (PHYSICAL_START > 0) |
542 | printk("physical_start = 0x%llx\n", | 544 | printk("physical_start = 0x%llx\n", |
543 | (unsigned long long)PHYSICAL_START); | 545 | (unsigned long long)PHYSICAL_START); |
544 | printk("-----------------------------------------------------\n"); | 546 | printk("-----------------------------------------------------\n"); |
545 | 547 | ||