[<prev] [next>] [day] [month] [year] [list]
Message-id: <4A023588.8080308@samsung.com>
Date: Thu, 07 May 2009 10:12:40 +0900
From: Kim Kyuwon <q1.kim@...sung.com>
To: LKML <linux-kernel@...r.kernel.org>
Cc: rtc-linux@...glegroups.com, OMAP <linux-omap@...r.kernel.org>,
David Brownell <david-b@...bell.net>,
Kyungmin Park <kyungmin.park@...sung.com>,
p_gortmaker@...oo.com, a.zummo@...ertech.it
Subject: [PATCH] rtc: rtc-twl4030 don't mask alarm interrupts on suspend
Hi All,
This patch was originally sent to linux-omap mailing list.
(Please refer to http://markmail.org/thread/o643d7w224zo3i7n)
David Brownell said, if I've tested this:
Acked-by: David Brownell <dbrownell@...rs.sourceforge.net>
Of course, I've tested.
Regards,
Kyuwon
--
From: Kim Kyuwon <q1.kim@...sung.com>
Subject: [PATCH] rtc: rtc-twl4030 don't mask alarm interrupts on suspend
This patch enables the alarm interrupt of TWL4030 RTC to wake up the
system from suspend. You can test this patch with following command.
# echo +10 > /sys/class/rtc/rtc0/wakealarm; echo mem > /sys/power/state;
Signed-off-by: Kim Kyuwon <q1.kim@...sung.com>
---
drivers/rtc/rtc-twl4030.c | 4 +---
1 files changed, 1 insertions(+), 3 deletions(-)
diff --git a/drivers/rtc/rtc-twl4030.c b/drivers/rtc/rtc-twl4030.c
index ad35f76..c185939 100644
--- a/drivers/rtc/rtc-twl4030.c
+++ b/drivers/rtc/rtc-twl4030.c
@@ -495,9 +495,7 @@ static int twl4030_rtc_suspend(struct platform_device *pdev, pm_message_t state)
{
irqstat = rtc_irq_bits;
- /* REVISIT alarm may need to wake us from sleep */
- mask_rtc_irq_bit(BIT_RTC_INTERRUPTS_REG_IT_TIMER_M |
- BIT_RTC_INTERRUPTS_REG_IT_ALARM_M);
+ mask_rtc_irq_bit(BIT_RTC_INTERRUPTS_REG_IT_TIMER_M);
return 0;
}
--
1.5.2.5
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists