rtc: pcf8563: don't alway enable the alarm
Allow setting the alarm and later enable it instead of enabling it unconditionally. Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
This commit is contained in:
Родитель
a3350f9c57
Коммит
1856e0b2ac
|
@ -387,7 +387,7 @@ static int pcf8563_rtc_set_alarm(struct device *dev, struct rtc_wkalrm *tm)
|
||||||
if (err)
|
if (err)
|
||||||
return err;
|
return err;
|
||||||
|
|
||||||
return pcf8563_set_alarm_mode(client, 1);
|
return pcf8563_set_alarm_mode(client, !!tm->enabled);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int pcf8563_irq_enable(struct device *dev, unsigned int enabled)
|
static int pcf8563_irq_enable(struct device *dev, unsigned int enabled)
|
||||||
|
|
Загрузка…
Ссылка в новой задаче