diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2014-02-18 11:41:07 +0100 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2014-02-19 17:34:38 +0100 |
commit | 001f004ba71f5b405e67b52ecf29322dbfbcc47b (patch) | |
tree | 9afd62c74b1f673cc2c6e08742b1838ff8787984 /drivers/regulator/88pm800.c | |
parent | Linus 3.14-rc1 (diff) | |
download | linux-001f004ba71f5b405e67b52ecf29322dbfbcc47b.tar.xz linux-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.c | 4 |
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; |