9
0
Fork 0

ARM: i.MX: print silicon revision with pr_info

So that this message can be silenced by reducing the loglevel.

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Sascha Hauer 2014-11-07 10:20:33 +01:00
parent e8f9f5b131
commit 2a407b25d0
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ void imx_set_silicon_revision(const char *soc, int revision)
{
__imx_silicon_revision = revision;
printf("detected %s revision %d.%d\n", soc,
pr_info("detected %s revision %d.%d\n", soc,
(revision >> 4) & 0xf,
revision & 0xf);
}