[PATCH] PXA: Fix wakealarm capability for pxa-rtc
Marek Vasut
marek.vasut at gmail.com
Mon Aug 2 23:10:03 EDT 2010
Dne Út 3. srpna 2010 02:03:28 Alessandro Zummo napsal(a):
> On Sun, 1 Aug 2010 17:38:16 +0200
>
> Marek Vasut <marek.vasut at gmail.com> wrote:
> > > As I see now your real
> > > problem, I would request you leave the existing "device_init_wakeup(x,
> > > 1)" *and* you add yours to make the class driver happy.
> >
> > Why wouldn't the driver wake up from suspend?
>
> may I see the latest version of your patch, Marek?
>
> ty
---
drivers/rtc/rtc-pxa.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/rtc/rtc-pxa.c b/drivers/rtc/rtc-pxa.c
index e9c6fa0..d76f187 100644
--- a/drivers/rtc/rtc-pxa.c
+++ b/drivers/rtc/rtc-pxa.c
@@ -403,6 +403,8 @@ static int __init pxa_rtc_probe(struct platform_device
*pdev)
rtsr_clear_bits(pxa_rtc, RTSR_PIALE | RTSR_RDALE1 | RTSR_HZE);
+ device_init_wakeup(dev, 1);
+
pxa_rtc->rtc = rtc_device_register("pxa-rtc", &pdev->dev, &pxa_rtc_ops,
THIS_MODULE);
ret = PTR_ERR(pxa_rtc->rtc);
@@ -411,8 +413,6 @@ static int __init pxa_rtc_probe(struct platform_device
*pdev)
goto err_rtc_reg;
}
- device_init_wakeup(dev, 1);
-
return 0;
err_rtc_reg:
--
1.7.1
More information about the linux-arm-kernel
mailing list