From: Andy Fleming Date: Wed, 27 Feb 2008 21:50:50 +0000 (-0600) Subject: Fix source for ECM error IVPR X-Git-Tag: v1.3.2-rc3~7^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=534ea6b6f86f8b75ef2ac061ef110a98f103d7d6;p=kernel%2Fu-boot.git Fix source for ECM error IVPR 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 --- diff --git a/cpu/mpc85xx/interrupts.c b/cpu/mpc85xx/interrupts.c index 18e5377..4fe1fac 100644 --- 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 = 0x810002; /* 50220 enable ecm interrupts */ + pic->iivpr1 = 0x810001; /* 50220 enable ecm interrupts */ debug("iivpr1@%x = %x\n",&pic->iivpr1, pic->iivpr1); pic->iivpr2 = 0x810002; /* 50240 enable ddr interrupts */