aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Neuling <mikey@neuling.org>2017-09-20 14:46:18 +1000
committerStewart Smith <stewart@linux.vnet.ibm.com>2017-09-20 03:15:14 -0500
commit9c1870022d131e18bbe2858ff90731e83a95c5d4 (patch)
tree63a6af6264417726824319c85cec6fd7d98af93d
parent8b4c7a3cef1a2d37856ffe884b573212500a7ac2 (diff)
downloadskiboot-9c1870022d131e18bbe2858ff90731e83a95c5d4.zip
skiboot-9c1870022d131e18bbe2858ff90731e83a95c5d4.tar.gz
skiboot-9c1870022d131e18bbe2858ff90731e83a95c5d4.tar.bz2
fsp: Move common prints to trace
These two prints just end up filling the skiboot logs on any machine that's been booted for more than a few hours. They have never been useful, so make them trace level. Signed-off-by: Michael Neuling <mikey@neuling.org> Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
-rw-r--r--hw/fsp/fsp-surveillance.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/fsp/fsp-surveillance.c b/hw/fsp/fsp-surveillance.c
index 202b093..54e77cf 100644
--- a/hw/fsp/fsp-surveillance.c
+++ b/hw/fsp/fsp-surveillance.c
@@ -53,7 +53,7 @@ static void fsp_surv_ack(struct fsp_msg *msg)
val = (msg->resp->word1 >> 8) & 0xff;
if (val == 0) {
/* reset the pending flag */
- prlog(PR_DEBUG,
+ prlog(PR_TRACE,
"SURV: Received heartbeat acknowledge from FSP\n");
lock(&surv_lock);
fsp_surv_ack_pending = false;
@@ -115,7 +115,7 @@ static void fsp_surv_hbeat(void)
if (surv_timer == 0 ||
(tb_compare(now, surv_timer) == TB_AAFTERB) ||
(tb_compare(now, surv_timer) == TB_AEQUALB)) {
- prlog(PR_DEBUG,
+ prlog(PR_TRACE,
"SURV: Sending the heartbeat command to FSP\n");
msg = fsp_mkmsg(FSP_CMD_SURV_HBEAT, 1, 120);
if (!msg) {