Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=9f483519be82420e308b9a90a96a9c62f28032ae
Commit:     9f483519be82420e308b9a90a96a9c62f28032ae
Parent:     2feae2158a96aa5e02ca2e630896e6f553c36dc0
Author:     James Bottomley <[EMAIL PROTECTED]>
AuthorDate: Mon Apr 30 11:30:10 2007 -0500
Committer:  James Bottomley <[EMAIL PROTECTED]>
CommitDate: Tue May 1 10:07:20 2007 -0500

    [VOYAGER] clockevents driver: bring voyager in to line
    
    The irq0 timer interrupt should be initiallised identically with
    mach-default.
    
    Signed-off-by: James Bottomley <[EMAIL PROTECTED]>
---
 arch/i386/mach-voyager/setup.c |    8 +++++++-
 1 files changed, 7 insertions(+), 1 deletions(-)

diff --git a/arch/i386/mach-voyager/setup.c b/arch/i386/mach-voyager/setup.c
index cfa16c1..447bb10 100644
--- a/arch/i386/mach-voyager/setup.c
+++ b/arch/i386/mach-voyager/setup.c
@@ -40,10 +40,16 @@ void __init trap_init_hook(void)
 {
 }
 
-static struct irqaction irq0  = { timer_interrupt, IRQF_DISABLED, 
CPU_MASK_NONE, "timer", NULL, NULL};
+static struct irqaction irq0  = {
+       .handler = timer_interrupt,
+       .flags = IRQF_DISABLED | IRQF_NOBALANCING,
+       .mask = CPU_MASK_NONE,
+       .name = "timer"
+};
 
 void __init time_init_hook(void)
 {
+       irq0.mask = cpumask_of_cpu(safe_smp_processor_id());
        setup_irq(0, &irq0);
 }
 
-
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