summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormattis fjallstrom <mattis@acm.org>2016-04-23 13:41:34 -0700
committermattis fjallstrom <mattis@acm.org>2016-04-23 13:42:08 -0700
commitf8684ce86c0d7b23ee9f617e5d6d0a5e9d6e4c07 (patch)
treeca5988b7afba7757c7b71c85622e90ad1fd805fb
parent3bf4e16d2b0fac75f0db18e0235ed5a79d60f7e4 (diff)
downloadolio-linux-3.10-f8684ce86c0d7b23ee9f617e5d6d0a5e9d6e4c07.tar.xz
olio-linux-3.10-f8684ce86c0d7b23ee9f617e5d6d0a5e9d6e4c07.zip
Changing wake lock timeout back to 2s, in the hope of solving alarm wake-up issues.
Change-Id: I353df1c9658f63b2610d56db2346d0c08f0daab7
-rw-r--r--drivers/rtc/rtc-tps65910.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/rtc/rtc-tps65910.c b/drivers/rtc/rtc-tps65910.c
index a50dd46fd0a..2e4894b4732 100644
--- a/drivers/rtc/rtc-tps65910.c
+++ b/drivers/rtc/rtc-tps65910.c
@@ -200,7 +200,7 @@ static irqreturn_t tps65910_rtc_interrupt(int irq, void *rtc)
int ret;
u32 rtc_reg;
- wake_lock_timeout(&rtc_wake_lock, msecs_to_jiffies(500));
+ wake_lock_timeout(&rtc_wake_lock, msecs_to_jiffies(2000));
ret = regmap_read(tps->regmap, TPS65910_RTC_STATUS, &rtc_reg);
if (ret)
return IRQ_NONE;