aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/sh
diff options
context:
space:
mode:
authorMagnus Damm <damm@opensource.se>2011-10-12 16:21:08 +0900
committerPaul Mundt <lethal@linux-sh.org>2011-11-05 00:57:48 +0900
commit7d377b170ae0d4df7692f50c9609bea385fe87cc (patch)
tree7d08f799300242a9c3a1049a12b3577125f0d0d6 /drivers/sh
parentd6e15eefcb334deac3e877fce80ace3b91b0ab69 (diff)
downloadkernel_samsung_smdk4412-7d377b170ae0d4df7692f50c9609bea385fe87cc.zip
kernel_samsung_smdk4412-7d377b170ae0d4df7692f50c9609bea385fe87cc.tar.gz
kernel_samsung_smdk4412-7d377b170ae0d4df7692f50c9609bea385fe87cc.tar.bz2
sh: intc: Allow triggering on both edges for ARM SoCs
Enable IRQ_TYPE_EDGE_BOTH on all R/SH-Mobile ARM SoCs. This hardware feature is supported by sh7367, sh7377, sh7372 and sh73a0. Signed-off-by: Magnus Damm <damm@opensource.se> Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'drivers/sh')
-rw-r--r--drivers/sh/intc/chip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/sh/intc/chip.c b/drivers/sh/intc/chip.c
index e0ada37..7b246ef 100644
--- a/drivers/sh/intc/chip.c
+++ b/drivers/sh/intc/chip.c
@@ -186,7 +186,7 @@ static unsigned char intc_irq_sense_table[IRQ_TYPE_SENSE_MASK + 1] = {
!defined(CONFIG_CPU_SUBTYPE_SH7709)
[IRQ_TYPE_LEVEL_HIGH] = VALID(3),
#endif
-#if defined(CONFIG_ARCH_SH7372)
+#if defined(CONFIG_ARM) /* all recent SH-Mobile / R-Mobile ARM support this */
[IRQ_TYPE_EDGE_BOTH] = VALID(4),
#endif
};