summaryrefslogtreecommitdiffstats
path: root/drivers/regulator/max1586.c
diff options
context:
space:
mode:
authorKrzysztof Kozlowski2014-03-10 10:46:52 +0100
committerMark Brown2014-03-10 11:24:28 +0100
commit2d45e78a9a89b099685fbe9708723f3393c10a79 (patch)
tree418b95232ef006f3ddb06df576e228fe4c229ad2 /drivers/regulator/max1586.c
parentregulator: max1586: Remove regulator_dev pointer from state container (diff)
downloadkernel-qcow2-linux-2d45e78a9a89b099685fbe9708723f3393c10a79.tar.gz
kernel-qcow2-linux-2d45e78a9a89b099685fbe9708723f3393c10a79.tar.xz
kernel-qcow2-linux-2d45e78a9a89b099685fbe9708723f3393c10a79.zip
regulator: max1586: Don't allocate memory for regulator_dev pointers
Do not allocate memory for 'struct regulator_dev *' since it was removed from state container (values returned by devm_regulator_register() are not used outside of probe). Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com> Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'drivers/regulator/max1586.c')
-rw-r--r--drivers/regulator/max1586.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/regulator/max1586.c b/drivers/regulator/max1586.c
index c2a40a1a9e3e..d23d0577754b 100644
--- a/drivers/regulator/max1586.c
+++ b/drivers/regulator/max1586.c
@@ -165,8 +165,7 @@ static int max1586_pmic_probe(struct i2c_client *client,
struct max1586_data *max1586;
int i, id;
- max1586 = devm_kzalloc(&client->dev, sizeof(struct max1586_data) +
- sizeof(struct regulator_dev *) * (MAX1586_V6 + 1),
+ max1586 = devm_kzalloc(&client->dev, sizeof(struct max1586_data),
GFP_KERNEL);
if (!max1586)
return -ENOMEM;