diff options
Diffstat (limited to 'drivers/rtc/rtc-sh.c')
-rw-r--r-- | drivers/rtc/rtc-sh.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/rtc/rtc-sh.c b/drivers/rtc/rtc-sh.c index 6d87e26355a3..d0d2b047658b 100644 --- a/drivers/rtc/rtc-sh.c +++ b/drivers/rtc/rtc-sh.c | |||
@@ -649,8 +649,9 @@ static int __init sh_rtc_probe(struct platform_device *pdev) | |||
649 | clk_enable(rtc->clk); | 649 | clk_enable(rtc->clk); |
650 | 650 | ||
651 | rtc->capabilities = RTC_DEF_CAPABILITIES; | 651 | rtc->capabilities = RTC_DEF_CAPABILITIES; |
652 | if (pdev->dev.platform_data) { | 652 | if (dev_get_platdata(&pdev->dev)) { |
653 | struct sh_rtc_platform_info *pinfo = pdev->dev.platform_data; | 653 | struct sh_rtc_platform_info *pinfo = |
654 | dev_get_platdata(&pdev->dev); | ||
654 | 655 | ||
655 | /* | 656 | /* |
656 | * Some CPUs have special capabilities in addition to the | 657 | * Some CPUs have special capabilities in addition to the |