From: Mark Brown Date: Sun, 13 May 2012 17:35:56 +0000 (+0100) Subject: regulator: core: Release regulator-regulator supplies on error X-Git-Tag: v3.3.8~83 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4666b31d6dadd715732179f47aaf43f9143306d8;p=thirdparty%2Fkernel%2Fstable.git regulator: core: Release regulator-regulator supplies on error commit e81dba85c6388dfabcb76cbc2b8bd02836a53ae5 upstream. If we fail while registering a regulator make sure we release the supply for the regulator if there is one. Signed-off-by: Mark Brown Acked-by: Liam Girdwood Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/regulator/core.c b/drivers/regulator/core.c index e9a83f84adaf5..9d4b03ba86dd8 100644 --- a/drivers/regulator/core.c +++ b/drivers/regulator/core.c @@ -2877,6 +2877,8 @@ unset_supplies: unset_regulator_supplies(rdev); scrub: + if (rdev->supply) + regulator_put(rdev->supply); kfree(rdev->constraints); device_unregister(&rdev->dev); /* device core frees rdev */