diff options
Diffstat (limited to 'arch')
-rw-r--r-- | arch/m68knommu/platform/coldfire/intc.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/m68knommu/platform/coldfire/intc.c b/arch/m68knommu/platform/coldfire/intc.c index 88bffac50c67..14db26bf6e2f 100644 --- a/arch/m68knommu/platform/coldfire/intc.c +++ b/arch/m68knommu/platform/coldfire/intc.c | |||
@@ -103,10 +103,14 @@ void mcf_autovector(int irq) | |||
103 | 103 | ||
104 | static void intc_irq_mask(unsigned int irq) | 104 | static void intc_irq_mask(unsigned int irq) |
105 | { | 105 | { |
106 | if ((irq >= EIRQ1) && (irq <= EIRQ7)) | ||
107 | mcf_setimr(irq - EIRQ1 + 1); | ||
106 | } | 108 | } |
107 | 109 | ||
108 | static void intc_irq_unmask(unsigned int irq) | 110 | static void intc_irq_unmask(unsigned int irq) |
109 | { | 111 | { |
112 | if ((irq >= EIRQ1) && (irq <= EIRQ7)) | ||
113 | mcf_clrimr(irq - EIRQ1 + 1); | ||
110 | } | 114 | } |
111 | 115 | ||
112 | static int intc_irq_set_type(unsigned int irq, unsigned int type) | 116 | static int intc_irq_set_type(unsigned int irq, unsigned int type) |