openrisc: mask interrupts in irq_mask_ack function
authorGong Tao <gontao0607@gmail.com>
Fri, 21 Sep 2012 06:49:58 +0000 (08:49 +0200)
committerJonas Bonn <jonas@southpole.se>
Thu, 11 Oct 2012 09:27:26 +0000 (11:27 +0200)
or1k_pic_mask_ack was failing to actually mask the IRQ.

Signed-off-by: Gong Tao <gongtao0607@gmail.com>
Signed-off-by: Jonas Bonn <jonas@southpole.se>
arch/openrisc/kernel/irq.c

index 6132798..8ec77bc 100644 (file)
@@ -87,9 +87,11 @@ static void or1k_pic_mask_ack(struct irq_data *data)
        /* Comments for pic_ack apply here, too */
 
 #ifdef CONFIG_OR1K_1200
+       mtspr(SPR_PICMR, mfspr(SPR_PICMR) & ~(1UL << data->hwirq));
        mtspr(SPR_PICSR, mfspr(SPR_PICSR) & ~(1UL << data->hwirq));
 #else
        WARN(1, "Interrupt handling possibly broken\n");
+       mtspr(SPR_PICMR, (1UL << data->hwirq));
        mtspr(SPR_PICSR, (1UL << data->hwirq));
 #endif
 }