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

Commit a25f4a95 authored by Geert Uytterhoeven's avatar Geert Uytterhoeven Committed by Alexandre Belloni
Browse files

rtc: vr41xx: Wire up alarm_irq_enable



drivers/rtc/rtc-vr41xx.c:229: warning: ‘vr41xx_rtc_alarm_irq_enable’ defined but not used

Apparently the conversion to alarm_irq_enable forgot to wire up the
callback.

Fixes: 16380c15 ("RTC: Convert rtc drivers to use the alarm_irq_enable method")
Signed-off-by: default avatarGeert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: default avatarAlexandre Belloni <alexandre.belloni@free-electrons.com>
parent d2c6b874
Loading
Loading
Loading
Loading
+7 −6
Original line number Original line Diff line number Diff line
@@ -278,6 +278,7 @@ static const struct rtc_class_ops vr41xx_rtc_ops = {
	.set_time		= vr41xx_rtc_set_time,
	.set_time		= vr41xx_rtc_set_time,
	.read_alarm		= vr41xx_rtc_read_alarm,
	.read_alarm		= vr41xx_rtc_read_alarm,
	.set_alarm		= vr41xx_rtc_set_alarm,
	.set_alarm		= vr41xx_rtc_set_alarm,
	.alarm_irq_enable	= vr41xx_rtc_alarm_irq_enable,
};
};


static int rtc_probe(struct platform_device *pdev)
static int rtc_probe(struct platform_device *pdev)