diff options
author | Remi Machet <rmachet@slac.stanford.edu> | 2008-04-21 17:02:56 -0400 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2008-04-24 06:57:34 -0400 |
commit | df40a57ef16219e5dee75238559960b1dd459c65 (patch) | |
tree | 45b630d3002a8011ba020f82d396c6cee9a64e3c /arch/powerpc | |
parent | ff114b669b45480688198f28d6aad1a61223335d (diff) |
[POWERPC] Fix mv64x60 early console code to use cell-index property
The MPSC driver and prpmc2800.dts have been modified to use property
'cell-index' as the serial port number, but the early serial console
driver for the mv64x60 has not been modified to use this new property.
This fixes it.
Signed-off-by: Remi Machet (rmachet@slac.stanford.edu)
Acked-by: Dale Farnsworth <dale@farnsworth.org>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc')
-rw-r--r-- | arch/powerpc/sysdev/mv64x60_udbg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/sysdev/mv64x60_udbg.c b/arch/powerpc/sysdev/mv64x60_udbg.c index ccdb3b0418fc..2792dc8b038c 100644 --- a/arch/powerpc/sysdev/mv64x60_udbg.c +++ b/arch/powerpc/sysdev/mv64x60_udbg.c | |||
@@ -94,7 +94,7 @@ static void mv64x60_udbg_init(void) | |||
94 | if (!np) | 94 | if (!np) |
95 | return; | 95 | return; |
96 | 96 | ||
97 | block_index = of_get_property(np, "block-index", NULL); | 97 | block_index = of_get_property(np, "cell-index", NULL); |
98 | if (!block_index) | 98 | if (!block_index) |
99 | goto error; | 99 | goto error; |
100 | 100 | ||