diff options
-rw-r--r-- | drivers/regulator/virtual.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/regulator/virtual.c b/drivers/regulator/virtual.c index e7db5664722e..e953c1810c77 100644 --- a/drivers/regulator/virtual.c +++ b/drivers/regulator/virtual.c | |||
@@ -285,6 +285,8 @@ static int regulator_virtual_consumer_probe(struct platform_device *pdev) | |||
285 | drvdata->regulator = regulator_get(&pdev->dev, reg_id); | 285 | drvdata->regulator = regulator_get(&pdev->dev, reg_id); |
286 | if (IS_ERR(drvdata->regulator)) { | 286 | if (IS_ERR(drvdata->regulator)) { |
287 | ret = PTR_ERR(drvdata->regulator); | 287 | ret = PTR_ERR(drvdata->regulator); |
288 | dev_err(&pdev->dev, "Failed to obtain supply '%s': %d\n", | ||
289 | reg_id, ret); | ||
288 | goto err; | 290 | goto err; |
289 | } | 291 | } |
290 | 292 | ||