diff options
-rw-r--r-- | arch/mips/pmc-sierra/msp71xx/msp_irq_slp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/mips/pmc-sierra/msp71xx/msp_irq_slp.c b/arch/mips/pmc-sierra/msp71xx/msp_irq_slp.c index f5f1b8d2bb9a..66f6f8505e7c 100644 --- a/arch/mips/pmc-sierra/msp71xx/msp_irq_slp.c +++ b/arch/mips/pmc-sierra/msp71xx/msp_irq_slp.c | |||
@@ -45,7 +45,7 @@ static inline void mask_msp_slp_irq(unsigned int irq) | |||
45 | */ | 45 | */ |
46 | static inline void ack_msp_slp_irq(unsigned int irq) | 46 | static inline void ack_msp_slp_irq(unsigned int irq) |
47 | { | 47 | { |
48 | mask_slp_irq(irq); | 48 | mask_msp_slp_irq(irq); |
49 | 49 | ||
50 | /* | 50 | /* |
51 | * only really necessary for 18, 16-14 and sometimes 3:0 (since | 51 | * only really necessary for 18, 16-14 and sometimes 3:0 (since |
@@ -79,7 +79,7 @@ void __init msp_slp_irq_init(void) | |||
79 | 79 | ||
80 | /* initialize all the IRQ descriptors */ | 80 | /* initialize all the IRQ descriptors */ |
81 | for (i = MSP_SLP_INTBASE; i < MSP_PER_INTBASE + 32; i++) | 81 | for (i = MSP_SLP_INTBASE; i < MSP_PER_INTBASE + 32; i++) |
82 | set_irq_chip_and_handler(i, &msp_slp_irq_controller | 82 | set_irq_chip_and_handler(i, &msp_slp_irq_controller, |
83 | handle_level_irq); | 83 | handle_level_irq); |
84 | } | 84 | } |
85 | 85 | ||