aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/regulator/rk808-regulator.c
diff options
context:
space:
mode:
authorAxel Lin <axel.lin@ingics.com>2014-08-28 21:04:49 +0800
committerMark Brown <broonie@linaro.org>2014-08-28 16:01:25 +0100
commitc61519fd9abb1b520bcbe2eb21cf161d4d1b9eec (patch)
treee4ef84b58e7d72ed809e5e3e8c25884d09f679bb /drivers/regulator/rk808-regulator.c
parentregulator: rk808: remove redundant code (diff)
downloadlinux-dev-c61519fd9abb1b520bcbe2eb21cf161d4d1b9eec.tar.xz
linux-dev-c61519fd9abb1b520bcbe2eb21cf161d4d1b9eec.zip
regulator: rk808: Fix memory leak
The memory allocated in rk808_regulator_probe() needs to be freed when the module is unloaded. Thus pass &pdev->dev rather than &client->dev to devm_kzalloc. Signed-off-by: Axel Lin <axel.lin@ingics.com> Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'drivers/regulator/rk808-regulator.c')
-rw-r--r--drivers/regulator/rk808-regulator.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/regulator/rk808-regulator.c b/drivers/regulator/rk808-regulator.c
index f42952ead1bd..0d11df131eba 100644
--- a/drivers/regulator/rk808-regulator.c
+++ b/drivers/regulator/rk808-regulator.c
@@ -342,7 +342,7 @@ static int rk808_regulator_probe(struct platform_device *pdev)
int ret = 0;
if (!pdata) {
- pdata = devm_kzalloc(&client->dev, sizeof(*pdata), GFP_KERNEL);
+ pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL);
if (!pdata)
return -ENOMEM;
}