diff options
author | Peter Tyser <ptyser@xes-inc.com> | 2010-10-29 17:59:25 -0500 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2010-11-14 23:46:44 +0100 |
commit | e7060dc570cbc50afbab654219e18ee8eab203fc (patch) | |
tree | db583f8bf2839f3b8d6d3d4f32bd5554e0cbf0b8 /board/freescale/mpc8544ds/mpc8544ds.c | |
parent | 8ca78f2c89cd058e498fa438f57accc2e810bb98 (diff) | |
download | u-boot-imx-e7060dc570cbc50afbab654219e18ee8eab203fc.zip u-boot-imx-e7060dc570cbc50afbab654219e18ee8eab203fc.tar.gz u-boot-imx-e7060dc570cbc50afbab654219e18ee8eab203fc.tar.bz2 |
mpc85xx: Fix SERDES/eTSEC message indentation
Previously some mpc85xx boards printed indented messages such as the
following on bootup:
printf(" eTSEC4 is in sgmii mode.\n");
printf(" Serdes2 disalbed\n");
The bootup appearance looks cleaner if the indentation is removed which
aligns these messages with other bootup output.
Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
CC: galak@kernel.crashing.org
Diffstat (limited to 'board/freescale/mpc8544ds/mpc8544ds.c')
-rw-r--r-- | board/freescale/mpc8544ds/mpc8544ds.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/board/freescale/mpc8544ds/mpc8544ds.c b/board/freescale/mpc8544ds/mpc8544ds.c index 3bbf0c2..31c3fad 100644 --- a/board/freescale/mpc8544ds/mpc8544ds.c +++ b/board/freescale/mpc8544ds/mpc8544ds.c @@ -120,9 +120,9 @@ void pci_init_board(void) if (io_sel & 1) { if (!(gur->pordevsr & MPC85xx_PORDEVSR_SGMII1_DIS)) - printf (" eTSEC1 is in sgmii mode.\n"); + printf("eTSEC1 is in sgmii mode.\n"); if (!(gur->pordevsr & MPC85xx_PORDEVSR_SGMII3_DIS)) - printf (" eTSEC3 is in sgmii mode.\n"); + printf("eTSEC3 is in sgmii mode.\n"); } puts("\n"); |