aboutsummaryrefslogtreecommitdiff
path: root/hw/fsp/fsp-elog-write.c
diff options
context:
space:
mode:
authorStewart Smith <stewart@linux.vnet.ibm.com>2016-06-24 11:35:49 +1000
committerStewart Smith <stewart@linux.vnet.ibm.com>2016-06-24 13:37:16 +1000
commit2da74f5e454d6d7679d7ddb6d532ad3ccb672e3b (patch)
tree234d15e12a49c03b621b528bdec0cd06bbb384d9 /hw/fsp/fsp-elog-write.c
parent5f25590fd430265e69190aaa50f019e8dadad293 (diff)
downloadskiboot-2da74f5e454d6d7679d7ddb6d532ad3ccb672e3b.zip
skiboot-2da74f5e454d6d7679d7ddb6d532ad3ccb672e3b.tar.gz
skiboot-2da74f5e454d6d7679d7ddb6d532ad3ccb672e3b.tar.bz2
fsp-elog-write: display error code from FSP on error writing error log
Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
Diffstat (limited to 'hw/fsp/fsp-elog-write.c')
-rw-r--r--hw/fsp/fsp-elog-write.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/fsp/fsp-elog-write.c b/hw/fsp/fsp-elog-write.c
index cf915a2..2933b97 100644
--- a/hw/fsp/fsp-elog-write.c
+++ b/hw/fsp/fsp-elog-write.c
@@ -97,7 +97,7 @@ static void opal_fsp_write_complete(struct fsp_msg *read_msg)
default:
if (elog_write_retries++ >= MAX_RETRIES) {
remove_elog_head_entry();
- prerror("ELOG: Error in writing to FSP!\n");
+ prerror("ELOG: Error in writing to FSP (0x%x)!\n", val);
}
break;
}