aboutsummaryrefslogtreecommitdiff
path: root/drivers/regulator
diff options
context:
space:
mode:
authorWenyou Yang <wenyou.yang@atmel.com>2013-12-26 14:52:43 +0800
committerMark Brown <broonie@linaro.org>2013-12-30 12:06:55 +0000
commitf1de2c2f2749ba42b87a49ae57deb346301dec02 (patch)
tree9c985d7a50139ef689694cf0fee2038f76ccc8ef /drivers/regulator
parent7da98aafa2bee3583d675235c6113a57b4f20697 (diff)
regulator: act8865: fix incorrect devm_kzalloc for act8865
Which cause to allocate more needless memory. Signed-off-by: Wenyou Yang <wenyou.yang@atmel.com> Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'drivers/regulator')
-rw-r--r--drivers/regulator/act8865-regulator.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/regulator/act8865-regulator.c b/drivers/regulator/act8865-regulator.c
index e7dbdc046683..f816ad866a43 100644
--- a/drivers/regulator/act8865-regulator.c
+++ b/drivers/regulator/act8865-regulator.c
@@ -291,9 +291,7 @@ static int act8865_pmic_probe(struct i2c_client *client,
return -EINVAL;
}
- act8865 = devm_kzalloc(dev, sizeof(struct act8865) +
- sizeof(struct regulator_dev *) * ACT8865_REG_NUM,
- GFP_KERNEL);
+ act8865 = devm_kzalloc(dev, sizeof(struct act8865), GFP_KERNEL);
if (!act8865)
return -ENOMEM;