9
0
Fork 0

barebox_banner: switch to pr_info

Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Jean-Christophe PLAGNIOL-VILLARD 2013-03-08 12:59:41 +01:00 committed by Sascha Hauer
parent 42459443b6
commit 1d60b224e5
1 changed files with 2 additions and 2 deletions

View File

@ -16,6 +16,6 @@ void barebox_banner (void)
if (!board)
board = CONFIG_BOARDINFO;
printf("\n\n%s\n\n", version_string);
printf("Board: %s\n", board);
pr_info("\n\n%s\n\n", version_string);
pr_info("Board: %s\n", board);
}