Skip to content

Commit

Permalink
[ARM] cleanup struct irqaction initializers
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
  • Loading branch information
Thomas Gleixner authored and Russell King committed Oct 12, 2007
1 parent 4b9ced7 commit 1a10497
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion arch/arm/mach-clps7500/core.c
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,11 @@ static struct irq_chip clps7500_no_chip = {
.unmask = cl7500_no_action,
};

static struct irqaction irq_isa = { no_action, 0, CPU_MASK_NONE, "isa", NULL, NULL };
static struct irqaction irq_isa = {
.handler = no_action,
.mask = CPU_MASK_NONE,
.name = "isa",
};

static void __init clps7500_init_irq(void)
{
Expand Down

0 comments on commit 1a10497

Please sign in to comment.