diff options
author | Grygorii Strashko <grygorii.strashko@ti.com> | 2013-07-31 16:53:41 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-07-31 17:41:03 -0400 |
commit | b99b94b52339dc186810e29f1f6472d86c42d2d9 (patch) | |
tree | 93403762eae4dc098c81fa1ea35fbba692577988 | |
parent | 9d8c5b5284e4a0167c5f7b1193692492358b8700 (diff) |
drivers/rtc/rtc-twl.c: fix: rtcX/wakealarm attribute isn't created
The device_init_wakeup() should be called before rtc_device_register().
Otherwise, sysfs "sys/class/rtc/rtcX/wakealarm" attribute will not be seen
from User space.
Signed-off-by: Grygorii Strashko <grygorii.strashko@ti.com>
Cc: Kevin Hilman <khilman@linaro.org>
Cc: Tony Lindgren <tony@atomide.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | drivers/rtc/rtc-twl.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/rtc/rtc-twl.c b/drivers/rtc/rtc-twl.c index 02faf3c4e0d5..c2e80d7ca5e2 100644 --- a/drivers/rtc/rtc-twl.c +++ b/drivers/rtc/rtc-twl.c | |||
@@ -524,6 +524,8 @@ static int twl_rtc_probe(struct platform_device *pdev) | |||
524 | if (ret < 0) | 524 | if (ret < 0) |
525 | goto out1; | 525 | goto out1; |
526 | 526 | ||
527 | device_init_wakeup(&pdev->dev, 1); | ||
528 | |||
527 | rtc = rtc_device_register(pdev->name, | 529 | rtc = rtc_device_register(pdev->name, |
528 | &pdev->dev, &twl_rtc_ops, THIS_MODULE); | 530 | &pdev->dev, &twl_rtc_ops, THIS_MODULE); |
529 | if (IS_ERR(rtc)) { | 531 | if (IS_ERR(rtc)) { |
@@ -542,7 +544,6 @@ static int twl_rtc_probe(struct platform_device *pdev) | |||
542 | } | 544 | } |
543 | 545 | ||
544 | platform_set_drvdata(pdev, rtc); | 546 | platform_set_drvdata(pdev, rtc); |
545 | device_init_wakeup(&pdev->dev, 1); | ||
546 | return 0; | 547 | return 0; |
547 | 548 | ||
548 | out2: | 549 | out2: |