This patch changes method of setting alarm interrupt.

Cc: Ben Dooks <ben-li...@fluff.org>
Cc: Wan ZongShun <mcuos....@gmail.com>
Cc: Alessandro Zummo <a.zu...@towertech.it>
Signed-off-by: Kukjin Kim <kgene....@samsung.com>
---
 drivers/rtc/rtc-s3c.c |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/drivers/rtc/rtc-s3c.c b/drivers/rtc/rtc-s3c.c
index bb88027..1ccf81c 100644
--- a/drivers/rtc/rtc-s3c.c
+++ b/drivers/rtc/rtc-s3c.c
@@ -83,10 +83,12 @@ static int s3c_rtc_setaie(struct device *dev, unsigned int 
enabled)
        pr_debug("%s: aie=%d\n", __func__, enabled);
 
        spin_lock_irq(&s3c_rtc_pie_lock);
-       tmp = readb(s3c_rtc_base + S3C2410_RTCALM) & ~S3C2410_RTCALM_ALMEN;
+       tmp = readb(s3c_rtc_base + S3C2410_RTCALM);
 
        if (enabled)
                tmp |= S3C2410_RTCALM_ALMEN;
+       else
+               tmp &= ~S3C2410_RTCALM_ALMEN;
 
        writeb(tmp, s3c_rtc_base + S3C2410_RTCALM);
        spin_unlock_irq(&s3c_rtc_pie_lock);
-- 
1.6.2.5

--
To unsubscribe from this list: send the line "unsubscribe linux-samsung-soc" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to