aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Lynn <[email protected]>2012-01-10 15:10:38 -0800
committerLinus Torvalds <[email protected]>2012-01-10 16:30:52 -0800
commitb62581e6241c33b9fef45117f86830058738371f (patch)
tree41507fcead5502264742448d13c0a2552d6fa03a
parent10d065e65b0be33e868f9c6da67026b5111480d8 (diff)
rtc/ab8500: set can_wake flag
Set can_wake flag so wakealarm property is visible in sysfs. Signed-off-by: Andrew Lynn <[email protected]> Reviewed-by: Jonas ABERG <[email protected]> Signed-off-by: Linus Walleij <[email protected]> Cc: Alessandro Zummo <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
-rw-r--r--drivers/rtc/rtc-ab8500.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/rtc/rtc-ab8500.c b/drivers/rtc/rtc-ab8500.c
index d6bfc4f3658e..82a348095a71 100644
--- a/drivers/rtc/rtc-ab8500.c
+++ b/drivers/rtc/rtc-ab8500.c
@@ -308,6 +308,8 @@ static int __devinit ab8500_rtc_probe(struct platform_device *pdev)
return -ENODEV;
}
+ device_init_wakeup(&pdev->dev, true);
+
rtc = rtc_device_register("ab8500-rtc", &pdev->dev, &ab8500_rtc_ops,
THIS_MODULE);
if (IS_ERR(rtc)) {