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
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.