aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorMagnus Damm <damm@opensource.se>2010-02-15 06:40:25 -0500
committerPaul Mundt <lethal@linux-sh.org>2010-02-15 23:38:56 -0500
commitd85429a31790361b9e952be3817134c23b3b758a (patch)
treeb5a5fa7e81345e92c518bf5ff3a81ae8d032df7d /include
parent92e1f9a7ed613b36f3aaf8b04a79e2fd4fa37ec1 (diff)
sh: extend INTC with force_disable
Extend the shared INTC code with force_disable support to allow keeping mask bits statically disabled. Needed for SDHI support to mask out unsupported interrupt sources. Signed-off-by: Magnus Damm <damm@opensource.se> Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'include')
-rw-r--r--include/linux/sh_intc.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/sh_intc.h b/include/linux/sh_intc.h
index 66b4b0c45e7..51d288d8ac8 100644
--- a/include/linux/sh_intc.h
+++ b/include/linux/sh_intc.h
@@ -72,6 +72,7 @@ struct intc_hw_desc {
72struct intc_desc { 72struct intc_desc {
73 char *name; 73 char *name;
74 intc_enum force_enable; 74 intc_enum force_enable;
75 intc_enum force_disable;
75 struct intc_hw_desc hw; 76 struct intc_hw_desc hw;
76}; 77};
77 78