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>
This commit is contained in:
parent
75dbf0a0f9
commit
0ee42bb1f8
|
@ -122,10 +122,8 @@ static int pbias_regulator_probe(struct platform_device *pdev)
|
||||||
|
|
||||||
drvdata = devm_kzalloc(&pdev->dev, sizeof(struct pbias_regulator_data)
|
drvdata = devm_kzalloc(&pdev->dev, sizeof(struct pbias_regulator_data)
|
||||||
* count, GFP_KERNEL);
|
* count, GFP_KERNEL);
|
||||||
if (drvdata == NULL) {
|
if (!drvdata)
|
||||||
dev_err(&pdev->dev, "Failed to allocate device data\n");
|
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
}
|
|
||||||
|
|
||||||
syscon = syscon_regmap_lookup_by_phandle(np, "syscon");
|
syscon = syscon_regmap_lookup_by_phandle(np, "syscon");
|
||||||
if (IS_ERR(syscon))
|
if (IS_ERR(syscon))
|
||||||
|
|
Loading…
Reference in New Issue