2021-01-28 00:50:03

by Colin King

[permalink] [raw]
Subject: [PATCH][next] hv_utils: Fix spelling mistake "Hearbeat" -> "Heartbeat"

From: Colin Ian King <[email protected]>

There is a spelling mistake in an error message. Fix it.

Signed-off-by: Colin Ian King <[email protected]>
---
drivers/hv/hv_util.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

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;
}
--
2.29.2


2021-01-28 13:55:07

by Wei Liu

[permalink] [raw]
Subject: Re: [PATCH][next] hv_utils: Fix spelling mistake "Hearbeat" -> "Heartbeat"

On Wed, Jan 27, 2021 at 11:31:36PM +0000, Colin King wrote:
> From: Colin Ian King <[email protected]>
>
> There is a spelling mistake in an error message. Fix it.
>
> Signed-off-by: Colin Ian King <[email protected]>

Applied to hyperv-next. Thanks.

Wei.