aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorSeung-Woo Kim <sw0312.kim@samsung.com>2014-12-04 19:17:17 +0900
committerMark Brown <broonie@kernel.org>2014-12-04 22:45:36 +0000
commit60a2362f769cf549dc466134efe71c8bf9fbaaba (patch)
treed3a28bd5639ad1b4ee53019b09c0821df24e65ac /drivers
parentregulator: Lower priority of constraint logging (diff)
downloadlinux-dev-60a2362f769cf549dc466134efe71c8bf9fbaaba.tar.xz
linux-dev-60a2362f769cf549dc466134efe71c8bf9fbaaba.zip
regulator: core: Fix regualtor_ena_gpio_free not to access pin after freeing
After freeing pin from regulator_ena_gpio_free, loop can access the pin. So this patch fixes not to access pin after freeing. Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/regulator/core.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/regulator/core.c b/drivers/regulator/core.c
index df2af3a11351..47a455cfe04f 100644
--- a/drivers/regulator/core.c
+++ b/drivers/regulator/core.c
@@ -1713,6 +1713,8 @@ static void regulator_ena_gpio_free(struct regulator_dev *rdev)
gpiod_put(pin->gpiod);
list_del(&pin->list);
kfree(pin);
+ rdev->ena_pin = NULL;
+ return;
} else {
pin->request_count--;
}