diff options
author | Colin Ian King <[email protected]> | 2021-01-27 23:31:36 +0000 |
---|---|---|
committer | Wei Liu <[email protected]> | 2021-02-11 08:47:05 +0000 |
commit | bdb49526d25b076af4bd31b2fc66986ff0df1127 (patch) | |
tree | 45cb355031498686d2af255f51d67001f9961214 | |
parent | c068e3f484268458defea3e1a19d821017f88d26 (diff) |
hv_utils: Fix spelling mistake "Hearbeat" -> "Heartbeat"
There is a spelling mistake in an error message. Fix it.
Signed-off-by: Colin Ian King <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Wei Liu <[email protected]>
-rw-r--r-- | drivers/hv/hv_util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hv/hv_util.c b/drivers/hv/hv_util.c index 34f3e789cc9a..e4aefeb330da 100644 --- a/drivers/hv/hv_util.c +++ b/drivers/hv/hv_util.c @@ -507,7 +507,7 @@ static void heartbeat_onchannelcallback(void *context) /* Ensure recvlen is big enough to read header data */ if (recvlen < ICMSG_HDR) { - pr_err_ratelimited("Hearbeat request received. Packet length too small: %d\n", + pr_err_ratelimited("Heartbeat request received. Packet length too small: %d\n", recvlen); break; } |