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/mpc824x/start.S | |
| parent | 83b4cfa3d629dff0264366263c5e94d9a50ad80b (diff) | |
| download | olio-uboot-2014.01-02032e8f14751a1a751b09240a4f1cf9f8a2077f.tar.xz olio-uboot-2014.01-02032e8f14751a1a751b09240a4f1cf9f8a2077f.zip | |
[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/mpc824x/start.S')
| -rw-r--r-- | cpu/mpc824x/start.S | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/cpu/mpc824x/start.S b/cpu/mpc824x/start.S index 9ff052c3b..784edc36a 100644 --- a/cpu/mpc824x/start.S +++ b/cpu/mpc824x/start.S @@ -220,7 +220,7 @@ _start_of_vectors:  /* Alignment exception. */  	. = EXC_OFF_ALIGN  Alignment: -	EXCEPTION_PROLOG +	EXCEPTION_PROLOG(SRR0, SRR1)  	mfspr	r4,DAR  	stw	r4,_DAR(r21)  	mfspr	r5,DSISR @@ -238,7 +238,7 @@ Alignment:  /* Program check exception */  	. = EXC_OFF_PROGRAM  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 */ |