From: Mark Brown Date: Wed, 8 Oct 2014 22:08:13 +0000 (+0100) Subject: regulator: of: Lower the severity of the error with no container X-Git-Tag: v4.9.8~5389^2~1^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7de79a1d4992921c85b10077520385acc5b9a6e0;p=platform%2Fkernel%2Flinux-rpi3.git regulator: of: Lower the severity of the error with no container Description of regulators should generally be optional so if there is no DT node for the regulators container then we shouldn't print an error message. Lower the severity of the message to debug level (it might help someone work out what went wrong) and while we're at it say what we were looking for. Reported-by: Guenter Roeck Signed-off-by: Mark Brown --- diff --git a/drivers/regulator/of_regulator.c b/drivers/regulator/of_regulator.c index 7a51814..5a1d4af 100644 --- a/drivers/regulator/of_regulator.c +++ b/drivers/regulator/of_regulator.c @@ -211,7 +211,8 @@ struct regulator_init_data *regulator_of_get_init_data(struct device *dev, search = dev->of_node; if (!search) { - dev_err(dev, "Failed to find regulator container node\n"); + dev_dbg(dev, "Failed to find regulator container node '%s'\n", + desc->regulators_node); return NULL; }