diff options
Diffstat (limited to 'arch/powerpc/kernel/setup-common.c')
| -rw-r--r-- | arch/powerpc/kernel/setup-common.c | 14 | 
1 files changed, 7 insertions, 7 deletions
diff --git a/arch/powerpc/kernel/setup-common.c b/arch/powerpc/kernel/setup-common.c index 1f8db666468d..25aaa3903000 100644 --- a/arch/powerpc/kernel/setup-common.c +++ b/arch/powerpc/kernel/setup-common.c @@ -778,12 +778,6 @@ void ppc_printk_progress(char *s, unsigned short hex)  	pr_info("%s\n", s);  } -void arch_setup_pdev_archdata(struct platform_device *pdev) -{ -	pdev->archdata.dma_mask = DMA_BIT_MASK(32); -	pdev->dev.dma_mask = &pdev->archdata.dma_mask; -} -  static __init void print_system_info(void)  {  	pr_info("-----------------------------------------------------\n"); @@ -806,9 +800,15 @@ static __init void print_system_info(void)  	pr_info("mmu_features      = 0x%08x\n", cur_cpu_spec->mmu_features);  #ifdef CONFIG_PPC64  	pr_info("firmware_features = 0x%016lx\n", powerpc_firmware_features); +#ifdef CONFIG_PPC_BOOK3S +	pr_info("vmalloc start     = 0x%lx\n", KERN_VIRT_START); +	pr_info("IO start          = 0x%lx\n", KERN_IO_START); +	pr_info("vmemmap start     = 0x%lx\n", (unsigned long)vmemmap); +#endif  #endif -	print_system_hash_info(); +	if (!early_radix_enabled()) +		print_system_hash_info();  	if (PHYSICAL_START > 0)  		pr_info("physical_start    = 0x%llx\n",  |