From 9b9be42009e12d4fd9f90b806a091591cd6c4966 Mon Sep 17 00:00:00 2001 From: Stewart Smith Date: Wed, 24 Oct 2018 02:16:12 -0500 Subject: Quieten 'warnings' now that SIO is disabled Signed-off-by: Stewart Smith --- platforms/astbmc/common.c | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'platforms') diff --git a/platforms/astbmc/common.c b/platforms/astbmc/common.c index 10aed3f..64eba9a 100644 --- a/platforms/astbmc/common.c +++ b/platforms/astbmc/common.c @@ -413,8 +413,15 @@ void astbmc_early_init(void) prerror("PLAT: AST IO initialisation failed!\n"); ast_setup_sio_mbox(MBOX_IO_BASE, MBOX_LPC_IRQ); - } else - prlog(PR_WARNING, "PLAT: AST SIO unavailable!\n"); + } else { + /* + * This may or may not be an error depending on if we set up + * hiomap or not. In the old days it *was* an error, but now + * with the way we configure the BMC hardware, this is actually + * the not error case. + */ + prlog(PR_INFO, "PLAT: AST SIO unavailable!\n"); + } /* Setup UART and use it as console */ uart_init(); -- cgit v1.1