diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2014-02-18 10:41:11 (GMT) |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2014-02-19 16:38:41 (GMT) |
commit | 31833581de5a4bd2f087c361f757865d1d12f23d (patch) | |
tree | 3035580466c5b83ae5af8546d7d51aedb8906468 /drivers/regulator/as3711-regulator.c | |
parent | eecb02c003e42d604a15b59d57c0ec9417293257 (diff) | |
download | linux-31833581de5a4bd2f087c361f757865d1d12f23d.tar.xz |
regulator: as3711: Remove redundant error message
kzalloc prints its own OOM message upon failure.
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'drivers/regulator/as3711-regulator.c')
-rw-r--r-- | drivers/regulator/as3711-regulator.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/regulator/as3711-regulator.c b/drivers/regulator/as3711-regulator.c index 856c55f..b47283f 100644 --- a/drivers/regulator/as3711-regulator.c +++ b/drivers/regulator/as3711-regulator.c @@ -245,10 +245,8 @@ static int as3711_regulator_probe(struct platform_device *pdev) regs = devm_kzalloc(&pdev->dev, AS3711_REGULATOR_NUM * sizeof(struct as3711_regulator), GFP_KERNEL); - if (!regs) { - dev_err(&pdev->dev, "Memory allocation failed exiting..\n"); + if (!regs) return -ENOMEM; - } for (id = 0, ri = as3711_reg_info; id < AS3711_REGULATOR_NUM; ++id, ri++) { reg = ®s[id]; |