Эх сурвалжийг харах

regulator: max8952: 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>
Sachin Kamat 11 жил өмнө
parent
commit
7752d96400

+ 1 - 3
drivers/regulator/max8952.c

@@ -144,10 +144,8 @@ static struct max8952_platform_data *max8952_parse_dt(struct device *dev)
 	int i;
 	int i;
 
 
 	pd = devm_kzalloc(dev, sizeof(*pd), GFP_KERNEL);
 	pd = devm_kzalloc(dev, sizeof(*pd), GFP_KERNEL);
-	if (!pd) {
-		dev_err(dev, "Failed to allocate platform data\n");
+	if (!pd)
 		return NULL;
 		return NULL;
-	}
 
 
 	pd->gpio_vid0 = of_get_named_gpio(np, "max8952,vid-gpios", 0);
 	pd->gpio_vid0 = of_get_named_gpio(np, "max8952,vid-gpios", 0);
 	pd->gpio_vid1 = of_get_named_gpio(np, "max8952,vid-gpios", 1);
 	pd->gpio_vid1 = of_get_named_gpio(np, "max8952,vid-gpios", 1);