diff options
author | Stewart Smith <stewart@linux.vnet.ibm.com> | 2014-10-13 15:15:55 +1100 |
---|---|---|
committer | Stewart Smith <stewart@linux.vnet.ibm.com> | 2014-10-15 14:23:25 +1100 |
commit | 68ff169270d957db1febcd8f1fb7906e2759a93e (patch) | |
tree | 617df40ef4c0a505c7daf771e97df0873a90892f /hw/fsp | |
parent | ad93d8eacba09cb3aafdd643052fbc38b35f8705 (diff) | |
download | skiboot-68ff169270d957db1febcd8f1fb7906e2759a93e.zip skiboot-68ff169270d957db1febcd8f1fb7906e2759a93e.tar.gz skiboot-68ff169270d957db1febcd8f1fb7906e2759a93e.tar.bz2 |
Perhaps we shouldn't prerror() about the presence of an FSP. perhaps.
Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
Diffstat (limited to 'hw/fsp')
-rw-r--r-- | hw/fsp/fsp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/hw/fsp/fsp.c b/hw/fsp/fsp.c index 79d3db9..51d06b0 100644 --- a/hw/fsp/fsp.c +++ b/hw/fsp/fsp.c @@ -1813,7 +1813,8 @@ static void fsp_create_fsp(struct dt_node *fsp_node) int count, index; index = dt_prop_get_u32(fsp_node, "reg"); - prerror("FSP #%d: Found in device-tree, setting up...\n", index); + prlog(PR_INFO, "FSP #%d: Found in device-tree, setting up...\n", + index); linksprop = dt_find_property(fsp_node, "ibm,psi-links"); if (!linksprop || linksprop->len < 4) { |