summaryrefslogtreecommitdiffstats
path: root/drivers/mfd/syscon.c
diff options
context:
space:
mode:
authorAlexander Shiyan <shc_work@mail.ru>2013-08-07 13:25:51 +0400
committerSascha Hauer <s.hauer@pengutronix.de>2013-08-12 22:06:36 +0200
commit93a4a77528b8094ab89d4134b722a7eb1b28f756 (patch)
tree0169cae3e74633febb1b5361e2b63962d14a258e /drivers/mfd/syscon.c
parentd37bfa49447aeb77bc6430658265a6be8b37d228 (diff)
downloadbarebox-93a4a77528b8094ab89d4134b722a7eb1b28f756.tar.gz
barebox-93a4a77528b8094ab89d4134b722a7eb1b28f756.tar.xz
mfd: syscon: Replace dev_info with dev_dbg
There is no reason to print used region each time. Signed-off-by: Alexander Shiyan <shc_work@mail.ru> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'drivers/mfd/syscon.c')
-rw-r--r--drivers/mfd/syscon.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mfd/syscon.c b/drivers/mfd/syscon.c
index b628ab7c6a..52cb433a39 100644
--- a/drivers/mfd/syscon.c
+++ b/drivers/mfd/syscon.c
@@ -65,7 +65,7 @@ static int syscon_probe(struct device_d *dev)
syscon->base = (void __iomem *)res->start;
dev->priv = syscon;
- dev_info(dev, "map 0x%x-0x%x registered\n", res->start, res->end);
+ dev_dbg(dev, "map 0x%x-0x%x registered\n", res->start, res->end);
return 0;
}