diff options
author | Mark Brown <[email protected]> | 2021-09-29 15:07:17 +0100 |
---|---|---|
committer | Mark Brown <[email protected]> | 2021-09-30 13:26:07 +0100 |
commit | 35d114699b90c8b2c568c48f78adeb913d81bcc1 (patch) | |
tree | bb19db1a1fa6fed7fa26592269ee3f06e12506ae | |
parent | c6e5e92cb29eab3e49dab444730b4ac200caaacb (diff) |
regulator: Lower priority of logging when setting supply
We lowered all the other constraint related log messages to debug level so
lower the logging of what supplies we're configuring to debug level too.
Signed-off-by: Mark Brown <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Mark Brown <[email protected]>
-rw-r--r-- | drivers/regulator/core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/regulator/core.c b/drivers/regulator/core.c index 85783fb3aadf..21a2b28ab0ca 100644 --- a/drivers/regulator/core.c +++ b/drivers/regulator/core.c @@ -1571,7 +1571,7 @@ static int set_supply(struct regulator_dev *rdev, { int err; - rdev_info(rdev, "supplied by %s\n", rdev_get_name(supply_rdev)); + rdev_dbg(rdev, "supplied by %s\n", rdev_get_name(supply_rdev)); if (!try_module_get(supply_rdev->owner)) return -ENODEV; |