[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1418130764-22440-1-git-send-email-mike.looijmans@topic.nl>
Date: Tue, 9 Dec 2014 14:12:43 +0100
From: Mike Looijmans <mike.looijmans@...ic.nl>
To: broonie@...nel.org, lgirdwood@...il.com
Cc: linux-kernel@...r.kernel.org,
Mike Looijmans <mike.looijmans@...ic.nl>
Subject: [PATCH 1/2] drivers/regulator/core.c: Don't print error on EPROBE_DEFER
If a regulator depends on another regulator that happens to be called
later, the kernel always prints a message like this:
reg-fixed-voltage regulator_sd1: Failed to find supply vin
Since the deferral is not something fatal, nor even something the user
may need to be aware about, reduce the message to debug level.
This fixes a storm of error messages at boot when a board has a power
regulator on an I2C bus which powers GPIO controlled regulators for
example.
Signed-off-by: Mike Looijmans <mike.looijmans@...ic.nl>
---
drivers/regulator/core.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/regulator/core.c b/drivers/regulator/core.c
index e225711..9fb66cd 100644
--- a/drivers/regulator/core.c
+++ b/drivers/regulator/core.c
@@ -3715,7 +3715,7 @@ regulator_register(const struct regulator_desc *regulator_desc,
ret = 0;
goto add_dev;
} else if (!r) {
- dev_err(dev, "Failed to find supply %s\n", supply);
+ dev_dbg(dev, "Failed to find supply %s\n", supply);
ret = -EPROBE_DEFER;
goto scrub;
}
--
1.7.9.5
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists