summaryrefslogtreecommitdiffstats
path: root/drivers/regulator/pbias-regulator.c
diff options
context:
space:
mode:
authorJingoo Han <jg1.han@samsung.com>2014-06-02 15:30:44 +0900
committerMark Brown <broonie@linaro.org>2014-06-02 15:14:51 +0100
commit0ee42bb1f88d1bccdb140f37ec2fc4db6684a4ff (patch)
treeee94a834c669e69420db96677e3febf16f35b7aa /drivers/regulator/pbias-regulator.c
parent75dbf0a0f96b0fda180676af51375f5d008b6c9c (diff)
downloadop-kernel-dev-0ee42bb1f88d1bccdb140f37ec2fc4db6684a4ff.zip
op-kernel-dev-0ee42bb1f88d1bccdb140f37ec2fc4db6684a4ff.tar.gz
regulator: pbias: remove unnecessary OOM messages
The site-specific OOM messages are unnecessary, because they duplicate the MM subsystem generic OOM message. Signed-off-by: Jingoo Han <jg1.han@samsung.com> Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'drivers/regulator/pbias-regulator.c')
-rw-r--r--drivers/regulator/pbias-regulator.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/regulator/pbias-regulator.c b/drivers/regulator/pbias-regulator.c
index 708ddbb..6d02d68 100644
--- a/drivers/regulator/pbias-regulator.c
+++ b/drivers/regulator/pbias-regulator.c
@@ -122,10 +122,8 @@ static int pbias_regulator_probe(struct platform_device *pdev)
drvdata = devm_kzalloc(&pdev->dev, sizeof(struct pbias_regulator_data)
* count, GFP_KERNEL);
- if (drvdata == NULL) {
- dev_err(&pdev->dev, "Failed to allocate device data\n");
+ if (!drvdata)
return -ENOMEM;
- }
syscon = syscon_regmap_lookup_by_phandle(np, "syscon");
if (IS_ERR(syscon))
OpenPOWER on IntegriCloud