diff options
author | Jingoo Han <jg1.han@samsung.com> | 2014-06-02 15:30:44 +0900 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2014-06-02 15:14:51 +0100 |
commit | 0ee42bb1f88d1bccdb140f37ec2fc4db6684a4ff (patch) | |
tree | ee94a834c669e69420db96677e3febf16f35b7aa /drivers/regulator/pbias-regulator.c | |
parent | 75dbf0a0f96b0fda180676af51375f5d008b6c9c (diff) |
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.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/regulator/pbias-regulator.c b/drivers/regulator/pbias-regulator.c index 708ddbb83e2..6d02d68dfb4 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)) |