Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 53611
b: refs/heads/master
c: 9f48351
h: refs/heads/master
i:
  53609: 3402afd
  53607: 7215134
v: v3
  • Loading branch information
James Bottomley authored and James Bottomley committed May 1, 2007
1 parent 217b035 commit 00848e9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 2feae2158a96aa5e02ca2e630896e6f553c36dc0
refs/heads/master: 9f483519be82420e308b9a90a96a9c62f28032ae
8 changes: 7 additions & 1 deletion trunk/arch/i386/mach-voyager/setup.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

Expand Down

0 comments on commit 00848e9

Please sign in to comment.