rtc: rtc-rc5t583: use platform_{get,set}_drvdata()
authorJingoo Han <[email protected]>
Wed, 3 Jul 2013 22:07:13 +0000 (15:07 -0700)
committerLinus Torvalds <[email protected]>
Wed, 3 Jul 2013 23:07:55 +0000 (16:07 -0700)
Use the wrapper functions for getting and setting the driver data using
platform_device instead of using dev_{get,set}_drvdata() with &pdev->dev,
so we can directly pass a struct platform_device.

Signed-off-by: Jingoo Han <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
drivers/rtc/rtc-rc5t583.c

index 8eabcf51b35a05f21f0f43abe9bd563e7f5b5588..e53e9b1c69b3a315df0252dc0bba6665a1ffa6c6 100644 (file)
@@ -273,7 +273,7 @@ static int rc5t583_rtc_probe(struct platform_device *pdev)
  */
 static int rc5t583_rtc_remove(struct platform_device *pdev)
 {
-       struct rc5t583_rtc *rc5t583_rtc = dev_get_drvdata(&pdev->dev);
+       struct rc5t583_rtc *rc5t583_rtc = platform_get_drvdata(pdev);
 
        rc5t583_rtc_alarm_irq_enable(&rc5t583_rtc->rtc->dev, 0);
        return 0;