diff options
author | Jingoo Han <jg1.han@samsung.com> | 2014-06-02 02:30:44 -0400 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2014-06-02 10:14:51 -0400 |
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 708ddbb83e29..6d02d68dfb46 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) | |||
122 | 122 | ||
123 | drvdata = devm_kzalloc(&pdev->dev, sizeof(struct pbias_regulator_data) | 123 | drvdata = devm_kzalloc(&pdev->dev, sizeof(struct pbias_regulator_data) |
124 | * count, GFP_KERNEL); | 124 | * count, GFP_KERNEL); |
125 | if (drvdata == NULL) { | 125 | if (!drvdata) |
126 | dev_err(&pdev->dev, "Failed to allocate device data\n"); | ||
127 | return -ENOMEM; | 126 | return -ENOMEM; |
128 | } | ||
129 | 127 | ||
130 | syscon = syscon_regmap_lookup_by_phandle(np, "syscon"); | 128 | syscon = syscon_regmap_lookup_by_phandle(np, "syscon"); |
131 | if (IS_ERR(syscon)) | 129 | if (IS_ERR(syscon)) |