Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 70979
b: refs/heads/master
c: 6a61f6a
h: refs/heads/master
i:
  70977: b72b035
  70975: ddb67dd
v: v3
  • Loading branch information
Thomas Gleixner authored and Thomas Gleixner committed Oct 17, 2007
1 parent 14d90bf commit f01f922
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 4 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: 6d43be8ea8c92a41557dacde94ae73565cbc01f0
refs/heads/master: 6a61f6a55708f5e50c4d78934199e7e9257e6aa2
6 changes: 5 additions & 1 deletion trunk/arch/x86/kernel/i8259_32.c
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,11 @@ static irqreturn_t math_error_irq(int cpl, void *dev_id)
* New motherboards sometimes make IRQ 13 be a PCI interrupt,
* so allow interrupt sharing.
*/
static struct irqaction fpu_irq = { math_error_irq, 0, CPU_MASK_NONE, "fpu", NULL, NULL };
static struct irqaction fpu_irq = {
.handler = math_error_irq,
.mask = CPU_MASK_NONE,
.name = "fpu",
};

void __init init_ISA_irqs (void)
{
Expand Down
6 changes: 5 additions & 1 deletion trunk/arch/x86/mach-default/setup.c
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,11 @@ void __init pre_intr_init_hook(void)
/*
* IRQ2 is cascade interrupt to second interrupt controller
*/
static struct irqaction irq2 = { no_action, 0, CPU_MASK_NONE, "cascade", NULL, NULL};
static struct irqaction irq2 = {
.handler = no_action,
.mask = CPU_MASK_NONE,
.name = "cascade",
};

/**
* intr_init_hook - post gate setup interrupt initialisation
Expand Down
6 changes: 5 additions & 1 deletion trunk/arch/x86/mach-voyager/setup.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,11 @@ void __init pre_intr_init_hook(void)
/*
* IRQ2 is cascade interrupt to second interrupt controller
*/
static struct irqaction irq2 = { no_action, 0, CPU_MASK_NONE, "cascade", NULL, NULL};
static struct irqaction irq2 = {
.handler = no_action,
.mask = CPU_MASK_NONE,
.name = "cascade",
};

void __init intr_init_hook(void)
{
Expand Down

0 comments on commit f01f922

Please sign in to comment.