aboutsummaryrefslogtreecommitdiff
path: root/platforms
diff options
context:
space:
mode:
authorStewart Smith <stewart@linux.ibm.com>2018-10-24 02:16:12 -0500
committerStewart Smith <stewart@linux.ibm.com>2018-10-31 17:33:34 +1100
commit240eb43b982b68b222dda407241c007d9c5be975 (patch)
treef5b6c378f72f6d96331c54451bf7fe255992663d /platforms
parent70c83a4256709042072e0725ba1f4bbe01075fb6 (diff)
downloadskiboot-240eb43b982b68b222dda407241c007d9c5be975.zip
skiboot-240eb43b982b68b222dda407241c007d9c5be975.tar.gz
skiboot-240eb43b982b68b222dda407241c007d9c5be975.tar.bz2
Quieten 'warnings' now that SIO is disabled
[ Upstream commit 3057d8d69a298d668692107fe55b13afea03112c ] Signed-off-by: Stewart Smith <stewart@linux.ibm.com>
Diffstat (limited to 'platforms')
-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 1d271ad..e669956 100644
--- a/platforms/astbmc/common.c
+++ b/platforms/astbmc/common.c
@@ -421,8 +421,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();