aboutsummaryrefslogtreecommitdiff
path: root/platforms/astbmc/common.c
diff options
context:
space:
mode:
Diffstat (limited to 'platforms/astbmc/common.c')
-rw-r--r--platforms/astbmc/common.c11
1 files changed, 9 insertions, 2 deletions
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();