From: Axel Lin Date: Tue, 17 Apr 2012 10:06:50 +0000 (+0800) Subject: regulator: max8660: Fix a memory leak due to missing devm_kzalloc conversion X-Git-Tag: v3.5-rc1~177^2~57^2~31 X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=575f690dc4973027ce7e93360678681d09f65fac;p=linux.git regulator: max8660: Fix a memory leak due to missing devm_kzalloc conversion commit 4d26f7 "regulator: max8660: Use devm_kzalloc()" missed to replace kzalloc by devm_kzalloc. Fix it. Signed-off-by: Axel Lin Signed-off-by: Mark Brown --- diff --git a/drivers/regulator/max8660.c b/drivers/regulator/max8660.c index 9997cfbc3471..5d568175cc27 100644 --- a/drivers/regulator/max8660.c +++ b/drivers/regulator/max8660.c @@ -370,7 +370,7 @@ static int __devinit max8660_probe(struct i2c_client *client, return -EINVAL; } - max8660 = kzalloc(sizeof(struct max8660) + + max8660 = devm_kzalloc(&client->dev, sizeof(struct max8660) + sizeof(struct regulator_dev *) * MAX8660_V_END, GFP_KERNEL); if (!max8660)