diff options
author | wdenk <wdenk> | 2003-06-23 18:12:28 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2003-06-23 18:12:28 +0000 |
commit | cceb871fff195f2981b4cbedbcfa8e3c7bbe5c7b (patch) | |
tree | 11e6bc63023f544dbcb957b89f4252597f528b74 /cpu/mpc5xx | |
parent | 3595ac4979e648e102c7a500e3c63193a27953bc (diff) |
* Patch by Yuli Barcohen, 23 Jun 2003:
Update for MPC8260ADS board
* Patch by Murray Jensen, 23 Jun 2003:
- cleanup of GCC 3.x compiler warnings
Diffstat (limited to 'cpu/mpc5xx')
-rw-r--r-- | cpu/mpc5xx/cpu.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cpu/mpc5xx/cpu.c b/cpu/mpc5xx/cpu.c index 6018436a278..5b3bd26b433 100644 --- a/cpu/mpc5xx/cpu.c +++ b/cpu/mpc5xx/cpu.c @@ -131,10 +131,10 @@ int do_reset (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[]) ulong addr; /* Interrupts off, enable reset */ - __asm__ volatile (" mtspr 81, %r0 \n\t - mfmsr %r3 \n\t - rlwinm %r31,%r3,0,25,23\n\t - mtmsr %r31 \n\t"); + __asm__ volatile (" mtspr 81, %r0 \n\t" + " mfmsr %r3 \n\t" + " rlwinm %r31,%r3,0,25,23\n\t" + " mtmsr %r31 \n\t"); /* * Trying to execute the next instruction at a non-existing address * should cause a machine check, resulting in reset |