diff options
Diffstat (limited to 'arch/openrisc/kernel/setup.c')
| -rw-r--r-- | arch/openrisc/kernel/setup.c | 9 | 
1 files changed, 2 insertions, 7 deletions
| diff --git a/arch/openrisc/kernel/setup.c b/arch/openrisc/kernel/setup.c index 13c87f1f872b..2416a9f91533 100644 --- a/arch/openrisc/kernel/setup.c +++ b/arch/openrisc/kernel/setup.c @@ -48,17 +48,12 @@ static void __init setup_memory(void)  	unsigned long ram_start_pfn;  	unsigned long ram_end_pfn;  	phys_addr_t memory_start, memory_end; -	struct memblock_region *region;  	memory_end = memory_start = 0;  	/* Find main memory where is the kernel, we assume its the only one */ -	for_each_memblock(memory, region) { -		memory_start = region->base; -		memory_end = region->base + region->size; -		printk(KERN_INFO "%s: Memory: 0x%x-0x%x\n", __func__, -		       memory_start, memory_end); -	} +	memory_start = memblock_start_of_DRAM(); +	memory_end = memblock_end_of_DRAM();  	if (!memory_end) {  		panic("No memory!"); |