projects
/
oweals
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
21fae8b
)
Fix source for ECM error IVPR
author
Andy Fleming
<afleming@freescale.com>
Wed, 27 Feb 2008 21:50:50 +0000
(15:50 -0600)
committer
Andrew Fleming-AFLEMING
<afleming@freescale.com>
Wed, 27 Feb 2008 22:28:57 +0000
(16:28 -0600)
The source vector for the ECM was being set to 2,
but that's what the source vector for DDR was being
set to. Change it to 1.
Signed-off-by: Andy Fleming <afleming@freescale.com>
cpu/mpc85xx/interrupts.c
patch
|
blob
|
history
diff --git
a/cpu/mpc85xx/interrupts.c
b/cpu/mpc85xx/interrupts.c
index 18e5377b32ba7c7abdd31f5e8c83ccfe38029750..4fe1facf457f4a3d2c0a72ee741c561b4f9e1ab8 100644
(file)
--- a/
cpu/mpc85xx/interrupts.c
+++ b/
cpu/mpc85xx/interrupts.c
@@
-91,7
+91,7
@@
int interrupt_init (void)
set_msr (get_msr () | MSR_EE);
#ifdef CONFIG_INTERRUPTS
- pic->iivpr1 = 0x81000
2
; /* 50220 enable ecm interrupts */
+ pic->iivpr1 = 0x81000
1
; /* 50220 enable ecm interrupts */
debug("iivpr1@%x = %x\n",&pic->iivpr1, pic->iivpr1);
pic->iivpr2 = 0x810002; /* 50240 enable ddr interrupts */