aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/regulator/88pm800.c
diff options
context:
space:
mode:
authorSachin Kamat <sachin.kamat@linaro.org>2014-02-18 16:11:07 +0530
committerMark Brown <broonie@linaro.org>2014-02-20 01:34:38 +0900
commit001f004ba71f5b405e67b52ecf29322dbfbcc47b (patch)
tree9afd62c74b1f673cc2c6e08742b1838ff8787984 /drivers/regulator/88pm800.c
parentLinus 3.14-rc1 (diff)
downloadlinux-dev-001f004ba71f5b405e67b52ecf29322dbfbcc47b.tar.xz
linux-dev-001f004ba71f5b405e67b52ecf29322dbfbcc47b.zip
regulator: 88pm800: 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/88pm800.c')
-rw-r--r--drivers/regulator/88pm800.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/regulator/88pm800.c b/drivers/regulator/88pm800.c
index d333f7eac106..7a721d67e6ac 100644
--- a/drivers/regulator/88pm800.c
+++ b/drivers/regulator/88pm800.c
@@ -310,10 +310,8 @@ static int pm800_regulator_probe(struct platform_device *pdev)
pm800_data = devm_kzalloc(&pdev->dev, sizeof(*pm800_data),
GFP_KERNEL);
- if (!pm800_data) {
- dev_err(&pdev->dev, "Failed to allocate pm800_regualtors");
+ if (!pm800_data)
return -ENOMEM;
- }
pm800_data->map = chip->subchip->regmap_power;
pm800_data->chip = chip;