summaryrefslogtreecommitdiff
path: root/drivers/regulator/fixed.c
diff options
context:
space:
mode:
authorSachin Kamat <sachin.kamat@linaro.org>2014-02-20 14:23:05 +0530
committerMark Brown <broonie@linaro.org>2014-02-20 20:22:35 +0900
commitf1b3f9031d255e1ac61dcc3b600fcf6e2bebc6f8 (patch)
tree7d45dc3b759adb7bc177603d9a898c4d09199e16 /drivers/regulator/fixed.c
parent84d0ffbe28e0bdd2f54c91e5162ae42a6c9cf431 (diff)
regulator: fixed: 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/fixed.c')
-rw-r--r--drivers/regulator/fixed.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/regulator/fixed.c b/drivers/regulator/fixed.c
index 3c307d62fd31..c61f7e97e4f8 100644
--- a/drivers/regulator/fixed.c
+++ b/drivers/regulator/fixed.c
@@ -130,10 +130,8 @@ static int reg_fixed_voltage_probe(struct platform_device *pdev)
drvdata = devm_kzalloc(&pdev->dev, sizeof(struct fixed_voltage_data),
GFP_KERNEL);
- if (drvdata == NULL) {
- dev_err(&pdev->dev, "Failed to allocate device data\n");
+ if (!drvdata)
return -ENOMEM;
- }
drvdata->desc.name = devm_kstrdup(&pdev->dev,
config->supply_name,