summaryrefslogtreecommitdiff
path: root/drivers/rtc/rtc-max77663.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/rtc/rtc-max77663.c')
-rw-r--r--drivers/rtc/rtc-max77663.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/rtc/rtc-max77663.c b/drivers/rtc/rtc-max77663.c
index a84dcc73f0ec..d6dac76944d6 100644
--- a/drivers/rtc/rtc-max77663.c
+++ b/drivers/rtc/rtc-max77663.c
@@ -432,9 +432,9 @@ static int max77663_rtc_read_alarm(struct device *dev, struct rtc_wkalrm *alrm)
alrm->time.tm_wday);
if (rtc->irq_mask & RTC_IRQ_ALARM1_MASK)
- alrm->enabled = 1;
- else
alrm->enabled = 0;
+ else
+ alrm->enabled = 1;
return 0;
}