diff options
author | Axel Lin <axel.lin@ingics.com> | 2013-05-03 08:46:10 -0400 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2013-05-12 10:34:12 -0400 |
commit | 405c54009c85cf03d459f5880744b0d4ebb892e4 (patch) | |
tree | 274cba389901c774ed0d2a9315469198205ff851 /drivers/regulator/lp8788-buck.c | |
parent | f722406faae2d073cc1d01063d1123c35425939e (diff) |
regulator: Remove all platform_set_drvdata(pdev, NULL) in drivers
Since 0998d06310 "device-core: Ensure drvdata = NULL when no driver is bound",
this is done by driver core after device_release or on probe failure.
Thus we can remove all platform_set_drvdata(pdev, NULL) in drivers.
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'drivers/regulator/lp8788-buck.c')
-rw-r--r-- | drivers/regulator/lp8788-buck.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/regulator/lp8788-buck.c b/drivers/regulator/lp8788-buck.c index eb1e1e88ae51..0b015f2a7fd9 100644 --- a/drivers/regulator/lp8788-buck.c +++ b/drivers/regulator/lp8788-buck.c | |||
@@ -533,7 +533,6 @@ static int lp8788_buck_remove(struct platform_device *pdev) | |||
533 | { | 533 | { |
534 | struct lp8788_buck *buck = platform_get_drvdata(pdev); | 534 | struct lp8788_buck *buck = platform_get_drvdata(pdev); |
535 | 535 | ||
536 | platform_set_drvdata(pdev, NULL); | ||
537 | regulator_unregister(buck->regulator); | 536 | regulator_unregister(buck->regulator); |
538 | 537 | ||
539 | return 0; | 538 | return 0; |