diff options
| author | Sachin Kamat <sachin.kamat@linaro.org> | 2014-02-20 03:53:05 -0500 |
|---|---|---|
| committer | Mark Brown <broonie@linaro.org> | 2014-02-20 06:22:35 -0500 |
| commit | f1b3f9031d255e1ac61dcc3b600fcf6e2bebc6f8 (patch) | |
| tree | 7d45dc3b759adb7bc177603d9a898c4d09199e16 | |
| parent | 84d0ffbe28e0bdd2f54c91e5162ae42a6c9cf431 (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>
| -rw-r--r-- | drivers/regulator/fixed.c | 4 |
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) | |||
| 130 | 130 | ||
| 131 | drvdata = devm_kzalloc(&pdev->dev, sizeof(struct fixed_voltage_data), | 131 | drvdata = devm_kzalloc(&pdev->dev, sizeof(struct fixed_voltage_data), |
| 132 | GFP_KERNEL); | 132 | GFP_KERNEL); |
| 133 | if (drvdata == NULL) { | 133 | if (!drvdata) |
| 134 | dev_err(&pdev->dev, "Failed to allocate device data\n"); | ||
| 135 | return -ENOMEM; | 134 | return -ENOMEM; |
| 136 | } | ||
| 137 | 135 | ||
| 138 | drvdata->desc.name = devm_kstrdup(&pdev->dev, | 136 | drvdata->desc.name = devm_kstrdup(&pdev->dev, |
| 139 | config->supply_name, | 137 | config->supply_name, |
