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

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

FRV: cleanup struct irqaction initializers



Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
Cc: David Howells <dhowells@redhat.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 33bbf959
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -43,7 +43,10 @@ unsigned long __delay_loops_MHz;
static irqreturn_t timer_interrupt(int irq, void *dummy);

static struct irqaction timer_irq  = {
	timer_interrupt, IRQF_DISABLED, CPU_MASK_NONE, "timer", NULL, NULL
	.handler = timer_interrupt,
	.flags = IRQF_DISABLED,
	.mask = CPU_MASK_NONE,
	.name = "timer",
};

static inline int set_rtc_mmss(unsigned long nowtime)