Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=ac919986d7dfc5d1d9f5585521307f222a8ebeaf
Commit:     ac919986d7dfc5d1d9f5585521307f222a8ebeaf
Parent:     1301e71562acc301a39fd363010c971aade8511a
Author:     Magnus Damm <[EMAIL PROTECTED]>
AuthorDate: Thu Jul 26 10:13:21 2007 +0900
Committer:  Paul Mundt <[EMAIL PROTECTED]>
CommitDate: Fri Sep 21 11:57:46 2007 +0900

    sh: intc - avoid SH7710 specific vector on SH7712
    
    This patch makes sure that the sh7710 specific ipsec vector is missing
    if building for a sh7712. All according to the datasheet.
    
    Signed-off-by: Magnus Damm <[EMAIL PROTECTED]>
    Signed-off-by: Paul Mundt <[EMAIL PROTECTED]>
---
 arch/sh/kernel/cpu/sh3/setup-sh7710.c |    9 +++++++--
 1 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/arch/sh/kernel/cpu/sh3/setup-sh7710.c 
b/arch/sh/kernel/cpu/sh3/setup-sh7710.c
index 93b6d7b..8b065aa 100644
--- a/arch/sh/kernel/cpu/sh3/setup-sh7710.c
+++ b/arch/sh/kernel/cpu/sh3/setup-sh7710.c
@@ -1,5 +1,5 @@
 /*
- * SH7710 Setup
+ * SH3 Setup code for SH7710, SH7712
  *
  *  Copyright (C) 2006  Paul Mundt
  *  Copyright (C) 2007  Nobuhiro Iwamatsu
@@ -45,7 +45,9 @@ static struct intc_vect vectors[] = {
        INTC_VECT(SCIF1_ERI, 0x900), INTC_VECT(SCIF1_RXI, 0x920),
        INTC_VECT(SCIF1_BRI, 0x940), INTC_VECT(SCIF1_TXI, 0x960),
        INTC_VECT(DMAC_DEI4, 0xb80), INTC_VECT(DMAC_DEI5, 0xba0),
+#ifdef CONFIG_CPU_SUBTYPE_SH7710
        INTC_VECT(IPSEC, 0xbe0),
+#endif
        INTC_VECT(EDMAC0, 0xc00), INTC_VECT(EDMAC1, 0xc20),
        INTC_VECT(EDMAC2, 0xc40),
        INTC_VECT(SIOF0_ERI, 0xe00), INTC_VECT(SIOF0_TXI, 0xe20),
@@ -88,7 +90,10 @@ static struct intc_prio_reg prio_registers[] = {
        { 0xa4000016, 16, 4, /* IPRC */ { IRQ3, IRQ2, IRQ1, IRQ0 } },
        { 0xa4000018, 16, 4, /* IPRD */ { 0, 0, IRQ4, IRQ5 } },
        { 0xa400001a, 16, 4, /* IPRE */ { DMAC1, SCIF0, SCIF1 } },
-       { 0xa4080000, 16, 4, /* IPRF */ { IPSEC, DMAC2 } },
+       { 0xa4080000, 16, 4, /* IPRF */ { 0, DMAC2 } },
+#ifdef CONFIG_CPU_SUBTYPE_SH7710
+       { 0xa4080000, 16, 4, /* IPRF */ { IPSEC } },
+#endif
        { 0xa4080002, 16, 4, /* IPRG */ { EDMAC0, EDMAC1, EDMAC2 } },
        { 0xa4080004, 16, 4, /* IPRH */ { 0, 0, 0, SIOF0 } },
        { 0xa4080006, 16, 4, /* IPRI */ { 0, 0, SIOF1 } },
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to