diff options
author | Felix Radensky <felix@embedded-sol.com> | 2010-01-19 17:37:13 +0200 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2010-01-21 08:18:30 +0100 |
commit | d98964aaacc5c54cf7d67bb1e5128ed067086dd7 (patch) | |
tree | 4ca919fc3c981c4f1c0ff87d6600b2f64cadde16 /cpu | |
parent | 50ef25ef24eccd8e69d2c1ccc97b3f7e30109f51 (diff) | |
download | talos-obmc-uboot-d98964aaacc5c54cf7d67bb1e5128ed067086dd7.tar.gz talos-obmc-uboot-d98964aaacc5c54cf7d67bb1e5128ed067086dd7.zip |
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>
Diffstat (limited to 'cpu')
-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 73d4d06afc..e1a023b703 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) |