aboutsummaryrefslogtreecommitdiff
path: root/hw/fsp
diff options
context:
space:
mode:
authorStewart Smith <stewart@linux.vnet.ibm.com>2014-10-13 15:15:46 +1100
committerStewart Smith <stewart@linux.vnet.ibm.com>2014-10-15 14:23:24 +1100
commit586f2d3b46086f4c5af75227a2c4f3515ecad38b (patch)
treefddd7f88312344067331a5fae311528c126b0bea /hw/fsp
parent9ffd46d59448abaa5a6c71deca1510b83cefae46 (diff)
downloadskiboot-586f2d3b46086f4c5af75227a2c4f3515ecad38b.zip
skiboot-586f2d3b46086f4c5af75227a2c4f3515ecad38b.tar.gz
skiboot-586f2d3b46086f4c5af75227a2c4f3515ecad38b.tar.bz2
FSP buffer allocation messages can be PR_DEBUG.
Very unlikely to ever actually fail. Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
Diffstat (limited to 'hw/fsp')
-rw-r--r--hw/fsp/fsp.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/hw/fsp/fsp.c b/hw/fsp/fsp.c
index 4072853..b68a3b5 100644
--- a/hw/fsp/fsp.c
+++ b/hw/fsp/fsp.c
@@ -1049,8 +1049,8 @@ static void fsp_alloc_inbound(struct fsp_msg *msg)
u8 rc = 0;
void *buf;
- printf("FSP: Allocate inbound buffer func: %04x len: %d\n",
- func_id, len);
+ prlog(PR_DEBUG, "FSP: Allocate inbound buffer func: %04x len: %d\n",
+ func_id, len);
lock(&fsp_lock);
if ((fsp_inbound_off + len) > FSP_INBOUND_SIZE) {
@@ -1073,8 +1073,8 @@ static void fsp_alloc_inbound(struct fsp_msg *msg)
len = (len + 0xfff) & ~0xfff;
fsp_inbound_off += len;
fsp_tce_map(tce_token, buf, len);
- printf("FSP: -> buffer at 0x%p, TCE: 0x%08x, alen: 0x%x\n",
- buf, tce_token, len);
+ prlog(PR_DEBUG, "FSP: -> buffer at 0x%p, TCE: 0x%08x, alen: 0x%x\n",
+ buf, tce_token, len);
act_len = len;
reply: