power: Use platform_{get,set}_drvdata()
authorJingoo Han <jg1.han@samsung.com>
Thu, 23 May 2013 10:34:39 +0000 (19:34 +0900)
committerAnton Vorontsov <anton@enomsg.org>
Fri, 7 Jun 2013 00:30:46 +0000 (17:30 -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 <jg1.han@samsung.com>
Signed-off-by: Anton Vorontsov <anton@enomsg.org>
drivers/power/intel_mid_battery.c
drivers/power/tps65090-charger.c

index 18d136b443ee01da3ced9ce696aa3a87460e7410..4520811168ad4f2d237b06d4dac61bd2aec14235 100644 (file)
@@ -756,7 +756,7 @@ static int platform_pmic_battery_probe(struct platform_device *pdev)
 
 static int platform_pmic_battery_remove(struct platform_device *pdev)
 {
-       struct pmic_power_module_info *pbi = dev_get_drvdata(&pdev->dev);
+       struct pmic_power_module_info *pbi = platform_get_drvdata(pdev);
 
        free_irq(pbi->irq, pbi);
        cancel_delayed_work_sync(&pbi->monitor_battery);
index 9fbca310a2ad98e77299156db4b83284d64e3ff6..77ab8561fa34c27a02b3d8b038b5643dcc7bd130 100644 (file)
@@ -218,7 +218,7 @@ static int tps65090_charger_probe(struct platform_device *pdev)
                return -ENOMEM;
        }
 
-       dev_set_drvdata(&pdev->dev, cdata);
+       platform_set_drvdata(pdev, cdata);
 
        cdata->dev                      = &pdev->dev;
        cdata->pdata                    = pdata;
@@ -291,7 +291,7 @@ fail_unregister_supply:
 
 static int tps65090_charger_remove(struct platform_device *pdev)
 {
-       struct tps65090_charger *cdata = dev_get_drvdata(&pdev->dev);
+       struct tps65090_charger *cdata = platform_get_drvdata(pdev);
 
        devm_free_irq(cdata->dev, cdata->irq, cdata);
        power_supply_unregister(&cdata->ac);