9
0
Fork 0

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>
This commit is contained in:
Alexander Shiyan 2013-08-07 13:25:51 +04:00 committed by Sascha Hauer
parent d37bfa4944
commit 93a4a77528
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}