diff options
author | Timur Tabi <timur@freescale.com> | 2012-03-15 11:42:27 +0000 |
---|---|---|
committer | Andy Fleming <afleming@freescale.com> | 2012-04-24 23:58:34 -0500 |
commit | 5d065c3e103133f811fdf77f6b793950fc3d3424 (patch) | |
tree | 4e4b7bbff4e0af5165c2d0b8ab9ad1dd3695acb4 /board/freescale/p3060qds/p3060qds.c | |
parent | 34e210f5bd9c000cec39b45483be6df52e2b6e07 (diff) | |
download | u-boot-imx-5d065c3e103133f811fdf77f6b793950fc3d3424.zip u-boot-imx-5d065c3e103133f811fdf77f6b793950fc3d3424.tar.gz u-boot-imx-5d065c3e103133f811fdf77f6b793950fc3d3424.tar.bz2 |
powerpc/85xx: don't display address map size (32-bit vs. 36-bit) during boot
Most 85xx boards can be built as a 32-bit or a 36-bit. Current code sometimes
displays which of these is actually built, but it's inconsistent. This is
especially problematic since the "default" build for a given 85xx board can
be either one, so if you don't see a message, you can't always know which
size is being used. Not only that, but each board includes code that displays
the message, so there is duplication.
The 'bdinfo' command has been updated to display this information, so
we don't need to display it at boot time. The board-specific code is
deleted.
Signed-off-by: Timur Tabi <timur@freescale.com>
Signed-off-by: Andy Fleming <afleming@freescale.com>
Diffstat (limited to 'board/freescale/p3060qds/p3060qds.c')
-rw-r--r-- | board/freescale/p3060qds/p3060qds.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/board/freescale/p3060qds/p3060qds.c b/board/freescale/p3060qds/p3060qds.c index c6c74f2..c7cca2a 100644 --- a/board/freescale/p3060qds/p3060qds.c +++ b/board/freescale/p3060qds/p3060qds.c @@ -68,9 +68,6 @@ int checkboard(void) else printf("invalid setting of SW%u\n", PIXIS_LBMAP_SWITCH); -#ifdef CONFIG_PHYS_64BIT - puts("36-bit Addressing\n"); -#endif puts("Reset Configuration Word (RCW):"); for (i = 0; i < ARRAY_SIZE(gur->rcwsr); i++) { u32 rcw = in_be32(&gur->rcwsr[i]); |