diff options
author | Axel Lin <axel.lin@gmail.com> | 2010-07-26 10:41:58 +0800 |
---|---|---|
committer | Liam Girdwood <lrg@slimlogic.co.uk> | 2010-07-27 11:29:27 +0100 |
commit | e9a1c5129de1caf4526b8df5f200ff628b2ffab4 (patch) | |
tree | ac137716e50cb3216a71536f37c7248fd9dc95f8 /drivers | |
parent | 979da89a9c230381ca55ea0764428a5d42a01e7f (diff) | |
download | linux-3.10-e9a1c5129de1caf4526b8df5f200ff628b2ffab4.tar.gz linux-3.10-e9a1c5129de1caf4526b8df5f200ff628b2ffab4.tar.bz2 linux-3.10-e9a1c5129de1caf4526b8df5f200ff628b2ffab4.zip |
wm8350-regulator: fix wm8350_register_regulator error handling
In the case of platform_device_add() fail, we should call
platform_device_put() instead of platform_device_del()
Signed-off-by: Axel Lin <axel.lin@gmail.com>
Acked-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Liam Girdwood <lrg@slimlogic.co.uk>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/regulator/wm8350-regulator.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/regulator/wm8350-regulator.c b/drivers/regulator/wm8350-regulator.c index 723cd1fb486..0e6ed7db936 100644 --- a/drivers/regulator/wm8350-regulator.c +++ b/drivers/regulator/wm8350-regulator.c @@ -1495,7 +1495,7 @@ int wm8350_register_regulator(struct wm8350 *wm8350, int reg, if (ret != 0) { dev_err(wm8350->dev, "Failed to register regulator %d: %d\n", reg, ret); - platform_device_del(pdev); + platform_device_put(pdev); wm8350->pmic.pdev[reg] = NULL; } |