summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSachin Kamat2014-02-20 09:53:05 +0100
committerMark Brown2014-02-20 12:22:35 +0100
commitf1b3f9031d255e1ac61dcc3b600fcf6e2bebc6f8 (patch)
tree7d45dc3b759adb7bc177603d9a898c4d09199e16
parentregulator: fixed: update to devm_* API (diff)
downloadkernel-qcow2-linux-f1b3f9031d255e1ac61dcc3b600fcf6e2bebc6f8.tar.gz
kernel-qcow2-linux-f1b3f9031d255e1ac61dcc3b600fcf6e2bebc6f8.tar.xz
kernel-qcow2-linux-f1b3f9031d255e1ac61dcc3b600fcf6e2bebc6f8.zip
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>
-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,