Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8929ecf8 authored by Mike Frysinger's avatar Mike Frysinger Committed by Bryan Wu
Browse files

[Blackfin] arch: add fixed code to the memory map output

parent c63d4e64
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -514,6 +514,7 @@ static __init void memory_setup(void)
	printk(KERN_INFO "Kernel Managed Memory: %ldMB\n", _ramend >> 20);

	printk(KERN_INFO "Memory map:\n"
		KERN_INFO "  fixedcode = 0x%p-0x%p\n"
		KERN_INFO "  text      = 0x%p-0x%p\n"
		KERN_INFO "  rodata    = 0x%p-0x%p\n"
		KERN_INFO "  bss       = 0x%p-0x%p\n"
@@ -527,7 +528,8 @@ static __init void memory_setup(void)
#if DMA_UNCACHED_REGION > 0
		KERN_INFO "  DMA Zone  = 0x%p-0x%p\n"
#endif
		, _stext, _etext,
		, (void *)FIXED_CODE_START, (void *)FIXED_CODE_END,
		_stext, _etext,
		__start_rodata, __end_rodata,
		__bss_start, __bss_stop,
		_sdata, _edata,