diff options
| author | Felix Radensky <[email protected]> | 2010-01-19 17:37:13 +0200 |
|---|---|---|
| committer | Wolfgang Denk <[email protected]> | 2010-01-23 17:53:11 +0100 |
| commit | 17ab3057bde25208af71326c0ff213d05eadb318 (patch) | |
| tree | 2d8346deae667b4412f22643f90c8ab0881da042 | |
| parent | a200a7c04d89853d2a1395b96d8ca5e3dd754551 (diff) | |
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 <[email protected]>
Signed-off-by: Stefan Roese <[email protected]>
| -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 e1b00a74c7a..f68402f8457 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) |
