diff options
author | Rob Herring <rob.herring@calxeda.com> | 2013-02-21 16:44:54 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-02-21 17:22:28 -0800 |
commit | b06eef45cab7231f59b23d98ce78c090896b6103 (patch) | |
tree | f03e17cec811ab0d33cbc1c8eb3e16fb1cb8988a /drivers/rtc/rtc-pl031.c | |
parent | cce2da9a1fc6ef144d830587080476fec283d670 (diff) | |
download | linux-3.10-b06eef45cab7231f59b23d98ce78c090896b6103.tar.gz linux-3.10-b06eef45cab7231f59b23d98ce78c090896b6103.tar.bz2 linux-3.10-b06eef45cab7231f59b23d98ce78c090896b6103.zip |
drivers/rtc/rtc-pl031.c: add wakeup support
Mark the pl031 as wake-up capable so that rtcwake and suspend test can work.
Signed-off-by: Rob Herring <rob.herring@calxeda.com>
Cc: Srinidhi Kasagar <srinidhi.kasagar@stericsson.com>
Cc: Linus Walleij <linus.walleij@linaro.org>
Cc: Alessandro Zummo <a.zummo@towertech.it>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/rtc/rtc-pl031.c')
-rw-r--r-- | drivers/rtc/rtc-pl031.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/rtc/rtc-pl031.c b/drivers/rtc/rtc-pl031.c index 81c5077feff..8900ea78481 100644 --- a/drivers/rtc/rtc-pl031.c +++ b/drivers/rtc/rtc-pl031.c @@ -384,6 +384,8 @@ static int pl031_probe(struct amba_device *adev, const struct amba_id *id) goto out_no_irq; } + device_init_wakeup(&adev->dev, 1); + return 0; out_no_irq: |