summaryrefslogtreecommitdiffstats
path: root/hw/fsp/fsp-surveillance.c
diff options
context:
space:
mode:
authorAnton Blanchard <anton@samba.org>2015-04-28 17:29:20 +1000
committerStewart Smith <stewart@linux.vnet.ibm.com>2015-04-29 09:44:58 +1000
commit437b887183528a23399cc153bac0728cb635a298 (patch)
treeab08e4b8f45c203f313153c0c8195befb76ea27f /hw/fsp/fsp-surveillance.c
parent91c96ce08f0a94f696f4ee4394c3c8d22057f3ee (diff)
downloadblackbird-skiboot-437b887183528a23399cc153bac0728cb635a298.tar.gz
blackbird-skiboot-437b887183528a23399cc153bac0728cb635a298.zip
surv: Fix "hearbeat" typo
I get thousands of these in my OPAL message log so they may as well be spelled correctly. While here, make the other messages consistent by changing hbeat to heartbeat. Signed-off-by: Anton Blanchard <anton@samba.org> Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
Diffstat (limited to 'hw/fsp/fsp-surveillance.c')
-rw-r--r--hw/fsp/fsp-surveillance.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/hw/fsp/fsp-surveillance.c b/hw/fsp/fsp-surveillance.c
index 138ff3f9..b94eb1ba 100644
--- a/hw/fsp/fsp-surveillance.c
+++ b/hw/fsp/fsp-surveillance.c
@@ -112,15 +112,15 @@ static void fsp_surv_hbeat(void)
(tb_compare(now, surv_timer) == TB_AAFTERB) ||
(tb_compare(now, surv_timer) == TB_AEQUALB)) {
prlog(PR_DEBUG,
- "SURV: Sending the hearbeat command to FSP\n");
+ "SURV: Sending the heartbeat command to FSP\n");
msg = fsp_mkmsg(FSP_CMD_SURV_HBEAT, 1, 120);
if (!msg) {
- prerror("SURV: Failed to allocate hbeat msg\n");
+ prerror("SURV: Failed to allocate heartbeat msg\n");
return;
}
if (fsp_queue_msg(msg, fsp_surv_ack)) {
fsp_freemsg(msg);
- prerror("SURV: Failed to queue hbeat msg\n");
+ prerror("SURV: Failed to queue heartbeat msg\n");
} else {
fsp_surv_ack_pending = true;
surv_timer = now + secs_to_tb(60);
OpenPOWER on IntegriCloud