Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=46abf4b39a555294ec0df138923daed1ccb9adb5
Commit:     46abf4b39a555294ec0df138923daed1ccb9adb5
Parent:     d1598b6adb0e7d9615f751f3bced128bcceb7378
Author:     Ralf Baechle <[EMAIL PROTECTED]>
AuthorDate: Wed Oct 31 12:42:56 2007 +0000
Committer:  Ralf Baechle <[EMAIL PROTECTED]>
CommitDate: Fri Nov 2 16:13:46 2007 +0000

    [MIPS] SB1250: Use the right irqaction for the timer interrupt.
    
    Signed-off-by: Ralf Baechle <[EMAIL PROTECTED]>
---
 arch/mips/sibyte/sb1250/time.c |    8 +-------
 1 files changed, 1 insertions(+), 7 deletions(-)

diff --git a/arch/mips/sibyte/sb1250/time.c b/arch/mips/sibyte/sb1250/time.c
index 181a413..e224fe7 100644
--- a/arch/mips/sibyte/sb1250/time.c
+++ b/arch/mips/sibyte/sb1250/time.c
@@ -113,12 +113,6 @@ static irqreturn_t sibyte_counter_handler(int irq, void 
*dev_id)
        return IRQ_HANDLED;
 }
 
-static struct irqaction sibyte_irqaction = {
-       .handler        = sibyte_counter_handler,
-       .flags          = IRQF_DISABLED | IRQF_PERCPU,
-       .name           = "timer",
-};
-
 static DEFINE_PER_CPU(struct clock_event_device, sibyte_hpt_clockevent);
 static DEFINE_PER_CPU(struct irqaction, sibyte_hpt_irqaction);
 static DEFINE_PER_CPU(char [18], sibyte_hpt_name);
@@ -161,7 +155,7 @@ void __cpuinit sb1250_clockevent_init(void)
        action->flags   = IRQF_DISABLED | IRQF_PERCPU;
        action->name    = name;
        action->dev_id  = cd;
-       setup_irq(irq, &sibyte_irqaction);
+       setup_irq(irq, &action);
 }
 
 /*
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to