diff options
author | Wenyou Yang <wenyou.yang@atmel.com> | 2013-12-26 10:52:43 +0400 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2013-12-30 16:06:55 +0400 |
commit | f1de2c2f2749ba42b87a49ae57deb346301dec02 (patch) | |
tree | 9c985d7a50139ef689694cf0fee2038f76ccc8ef /drivers/regulator | |
parent | 7da98aafa2bee3583d675235c6113a57b4f20697 (diff) | |
download | linux-f1de2c2f2749ba42b87a49ae57deb346301dec02.tar.xz |
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.c | 4 |
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; |