Skip to content
Snippets Groups Projects
Commit 2331e18b authored by Becky Bruce's avatar Becky Bruce Committed by Wolfgang Denk
Browse files

mpc8641hpcn: Indicate 36-bit addr map in boot messages


If 36-bit addressing is enabled, print a message on the console
when we boot.

Signed-off-by: default avatarBecky Bruce <beckyb@kernel.crashing.org>
parent 2f70c49e
No related branches found
No related tags found
No related merge requests found
......@@ -46,6 +46,9 @@ int checkboard(void)
"System Version: 0x%02x, FPGA Version: 0x%02x\n",
in8(PIXIS_BASE + PIXIS_ID), in8(PIXIS_BASE + PIXIS_VER),
in8(PIXIS_BASE + PIXIS_PVER));
#ifdef CONFIG_PHYS_64BIT
printf (" 36-bit physical address map\n");
#endif
return 0;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment