aboutsummaryrefslogtreecommitdiff
path: root/hdata/spira.c
diff options
context:
space:
mode:
authorStewart Smith <stewart@linux.vnet.ibm.com>2014-10-13 15:15:30 +1100
committerStewart Smith <stewart@linux.vnet.ibm.com>2014-10-15 14:23:24 +1100
commit935460c73e4a9bf1af9161da10f5f04b93131cb2 (patch)
tree06e9dec9c24c79834008e3a02ab22ce372f7ec58 /hdata/spira.c
parent90fe8081183795627b24e03a5ea3465d63d0c21a (diff)
downloadskiboot-935460c73e4a9bf1af9161da10f5f04b93131cb2.zip
skiboot-935460c73e4a9bf1af9161da10f5f04b93131cb2.tar.gz
skiboot-935460c73e4a9bf1af9161da10f5f04b93131cb2.tar.bz2
Reduce the amount of text 'parsing hdat' uses.
We can, by default, deal with just two lines rather than 5 of ASCII art Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
Diffstat (limited to 'hdata/spira.c')
-rw-r--r--hdata/spira.c12
1 files changed, 3 insertions, 9 deletions
diff --git a/hdata/spira.c b/hdata/spira.c
index e6a7561..7becdd3 100644
--- a/hdata/spira.c
+++ b/hdata/spira.c
@@ -949,11 +949,7 @@ void parse_hdat(bool is_opal, uint32_t master_cpu)
{
cpu_type = PVR_TYPE(mfspr(SPR_PVR));
- printf("\n");
- printf("-----------------------------------------------\n");
- printf("-------------- Parsing HDAT ... ---------------\n");
- printf("-----------------------------------------------\n");
- printf("\n");
+ prlog(PR_DEBUG, "Parsing HDAT...\n");
dt_root = dt_new_root("");
@@ -997,9 +993,7 @@ void parse_hdat(bool is_opal, uint32_t master_cpu)
vpd_parse();
/* Host services information. */
- hostservices_parse();
+ hostservices_parse();
- printf("\n");
- printf("-----------------------------------------------\n");
- printf("\n");
+ prlog(PR_INFO, "Parsing HDAT...done\n");
}