diff options
author | Felix Radensky <felix@embedded-sol.com> | 2010-01-19 17:37:13 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2010-01-23 17:53:11 +0100 |
commit | 17ab3057bde25208af71326c0ff213d05eadb318 (patch) | |
tree | 2d8346deae667b4412f22643f90c8ab0881da042 | |
parent | a200a7c04d89853d2a1395b96d8ca5e3dd754551 (diff) | |
download | u-boot-imx-17ab3057bde25208af71326c0ff213d05eadb318.zip u-boot-imx-17ab3057bde25208af71326c0ff213d05eadb318.tar.gz u-boot-imx-17ab3057bde25208af71326c0ff213d05eadb318.tar.bz2 |
ppc4xx: Fix reporting of bootstrap options G and F on 460EX/GT
Bootstrap options G and F are reported incorrectly (G instead
of F and vice versa). This patch fixes this.
Signed-off-by: Felix Radensky <felix@embedded-sol.com>
Signed-off-by: Stefan Roese <sr@denx.de>
-rw-r--r-- | cpu/ppc4xx/cpu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpu/ppc4xx/cpu.c b/cpu/ppc4xx/cpu.c index e1b00a7..f68402f 100644 --- a/cpu/ppc4xx/cpu.c +++ b/cpu/ppc4xx/cpu.c @@ -196,7 +196,7 @@ static char *bootstrap_str[] = { "I2C (Addr 0x54)", /* A8 */ "I2C (Addr 0x52)", /* A4 */ }; -static char bootstrap_char[] = { 'A', 'B', 'C', 'D', 'E', 'G', 'F', 'H' }; +static char bootstrap_char[] = { 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H' }; #endif #if defined(CONFIG_460SX) |