aboutsummaryrefslogtreecommitdiff
path: root/hw/bt.c
diff options
context:
space:
mode:
authorStewart Smith <stewart@linux.ibm.com>2018-06-04 15:24:10 +1000
committerStewart Smith <stewart@linux.ibm.com>2018-06-05 14:11:10 +1000
commit1b86a92b6cb66ca9a1968e57afd8e6d76c417523 (patch)
treeae439cef3a028c61f2b42f854be9d6e1c72f9f4a /hw/bt.c
parenta5a32e86f3e2be67da9a89333e1bb18b34145ac1 (diff)
downloadskiboot-1b86a92b6cb66ca9a1968e57afd8e6d76c417523.zip
skiboot-1b86a92b6cb66ca9a1968e57afd8e6d76c417523.tar.gz
skiboot-1b86a92b6cb66ca9a1968e57afd8e6d76c417523.tar.bz2
Quieten console output on boot
We print out a whole bunch of things on boot, most of which aren't interesting, so we should *not* print them instead. Printing things like what CPUs we found and what PCI devices we found *are* useful, so continue to do that. But we don't need to splat out a bunch of things that are always going to be true. Signed-off-by: Stewart Smith <stewart@linux.ibm.com>
Diffstat (limited to 'hw/bt.c')
-rw-r--r--hw/bt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/bt.c b/hw/bt.c
index ce87e2b..338a9da 100644
--- a/hw/bt.c
+++ b/hw/bt.c
@@ -657,7 +657,7 @@ void bt_init(void)
list_head_init(&bt.msgq);
bt.queue_len = 0;
- prlog(PR_NOTICE, "Interface initialized, IO 0x%04x\n", bt.base_addr);
+ prlog(PR_INFO, "Interface initialized, IO 0x%04x\n", bt.base_addr);
ipmi_register_backend(&bt_backend);