Commit af24187c authored by Dirk Behme's avatar Dirk Behme Committed by Tony Lindgren

ARM: OMAP: Fix omap-rtc

drivers/char/omap-rtc.c:125: error: static declaration of
'rtc_interrupt' follows non-static declaration
include/linux/rtc.h:107: error: previous declaration of
'rtc_interrupt' was here

Signed-off-by: Dirk Behme <dirk.behme_at_gmail.com>
Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
parent ab370c66
......@@ -121,7 +121,7 @@ static const unsigned char days_in_mo[] =
* A very tiny interrupt handler. It runs with SA_INTERRUPT set.
*/
static irqreturn_t rtc_interrupt(int irq, void *dev_id, struct pt_regs *regs)
irqreturn_t rtc_interrupt(int irq, void *dev_id, struct pt_regs *regs)
{
/*
* Either an alarm interrupt or update complete interrupt.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment