diff options
author | Rafal Jaworowski <raj@semihalf.com> | 2007-06-22 14:58:04 +0200 |
---|---|---|
committer | Rafal Jaworowski <raj@semihalf.com> | 2007-06-22 14:58:04 +0200 |
commit | 02032e8f14751a1a751b09240a4f1cf9f8a2077f (patch) | |
tree | 991ddaf81af6904a05370be6615bffa6171d284e /cpu/mpc8260 | |
parent | 83b4cfa3d629dff0264366263c5e94d9a50ad80b (diff) |
[ppc] Fix build breakage for all non-4xx PowerPC variants.
- adapt to the more generic EXCEPTION_PROLOG and CRIT_EXCEPTION macros
- minor 4xx cleanup
Diffstat (limited to 'cpu/mpc8260')
-rw-r--r-- | cpu/mpc8260/start.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpu/mpc8260/start.S b/cpu/mpc8260/start.S index 2e93bbbb864..bc55b58ad24 100644 --- a/cpu/mpc8260/start.S +++ b/cpu/mpc8260/start.S @@ -279,7 +279,7 @@ _start_of_vectors: /* Alignment exception. */ . = 0x600 Alignment: - EXCEPTION_PROLOG + EXCEPTION_PROLOG(SRR0, SRR1) mfspr r4,DAR stw r4,_DAR(r21) mfspr r5,DSISR @@ -298,7 +298,7 @@ Alignment: /* Program check exception */ . = 0x700 ProgramCheck: - EXCEPTION_PROLOG + EXCEPTION_PROLOG(SRR0, SRR1) addi r3,r1,STACK_FRAME_OVERHEAD li r20,MSR_KERNEL rlwimi r20,r23,0,16,16 /* copy EE bit from saved MSR */ |