Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c05e0664 authored by Thomas Gleixner's avatar Thomas Gleixner Committed by Linus Torvalds
Browse files

[PATCH] SH64: C99 initializers for hw_interrupt_type structures



Convert the initializers of hw_interrupt_type structures to C99 initializers.

Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent aecd4568
Loading
Loading
Loading
Loading
+7 −7
Original line number Diff line number Diff line
@@ -107,13 +107,13 @@ static void mask_and_ack_intc(unsigned int);
static void end_intc_irq(unsigned int irq);

static struct hw_interrupt_type intc_irq_type = {
	"INTC",
	startup_intc_irq,
	shutdown_intc_irq,
	enable_intc_irq,
	disable_intc_irq,
	mask_and_ack_intc,
	end_intc_irq
	.typename = "INTC",
	.startup = startup_intc_irq,
	.shutdown = shutdown_intc_irq,
	.enable = enable_intc_irq,
	.disable = disable_intc_irq,
	.ack = mask_and_ack_intc,
	.end = end_intc_irq
};

static int irlm;		/* IRL mode */