summaryrefslogtreecommitdiff
path: root/drivers/regulator
diff options
context:
space:
mode:
authorBibek Basu <bbasu@nvidia.com>2014-01-17 16:43:07 +0530
committerLaxman Dewangan <ldewangan@nvidia.com>2014-01-19 00:33:30 -0800
commita6d3ee248b62fbe2b380003df5c2d1dbc5c1851e (patch)
treef262fa2b50fb4983bfcd18cc9614a157da82e6e1 /drivers/regulator
parentb582a1293400f51148e2cd7d9039e30213fe077e (diff)
regulator: core: make warning as info
Make warning as info for consumer device name not present message Bug 1423355 Change-Id: Ib31d0f10102c3e88f99d4b105ca3a77a55db73b1 Signed-off-by: Bibek Basu <bbasu@nvidia.com> Reviewed-on: http://git-master/r/357116 Reviewed-by: Laxman Dewangan <ldewangan@nvidia.com> Tested-by: Laxman Dewangan <ldewangan@nvidia.com>
Diffstat (limited to 'drivers/regulator')
-rw-r--r--drivers/regulator/core.c2
-rw-r--r--drivers/regulator/of_regulator.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/drivers/regulator/core.c b/drivers/regulator/core.c
index 944ec44bc708..4c5d890bbbee 100644
--- a/drivers/regulator/core.c
+++ b/drivers/regulator/core.c
@@ -4563,7 +4563,7 @@ static int __init regulator_init_complete(void)
* so warn even if we aren't going to do
* anything here.
*/
- rdev_warn(rdev, "incomplete constraints, leaving on\n");
+ rdev_info(rdev, "incomplete constraints, leaving on\n");
}
unlock:
diff --git a/drivers/regulator/of_regulator.c b/drivers/regulator/of_regulator.c
index bd460951e7c4..f7939544aba4 100644
--- a/drivers/regulator/of_regulator.c
+++ b/drivers/regulator/of_regulator.c
@@ -60,7 +60,7 @@ static void of_get_regulator_consumer_list(struct device *dev,
"regulator-consumer-device",
&consumer[ncount].dev_name);
if (ret < 0)
- dev_warn(dev, "Consumer %s does not have device name\n",
+ dev_info(dev, "Consumer %s does not have device name\n",
child->name);
ncount++;
}