git: 025a5f6b2540 - stable/14 - vmm(4): Fix a typo in a kernel message

From: Gordon Bergling <gbe_at_FreeBSD.org>
Date: Sun, 28 Apr 2024 05:20:58 UTC
The branch stable/14 has been updated by gbe:

URL: https://cgit.FreeBSD.org/src/commit/?id=025a5f6b2540682c69ac63f7754ce74b43441034

commit 025a5f6b2540682c69ac63f7754ce74b43441034
Author:     Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2024-04-21 07:44:18 +0000
Commit:     Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2024-04-28 05:20:46 +0000

    vmm(4): Fix a typo in a kernel message
    
    - s/cant/can't/
    
    (cherry picked from commit 8b5c5cae92d5b44f03636540a787fd6e994ce816)
---
 sys/amd64/vmm/amd/ivrs_drv.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/amd64/vmm/amd/ivrs_drv.c b/sys/amd64/vmm/amd/ivrs_drv.c
index 7dd68d8aea95..34aebc62fed4 100644
--- a/sys/amd64/vmm/amd/ivrs_drv.c
+++ b/sys/amd64/vmm/amd/ivrs_drv.c
@@ -416,7 +416,7 @@ ivhd_identify(driver_t *driver, device_t parent)
 		if (ivhd_devs[i] == NULL) {
 			ivhd_devs[i] = device_find_child(parent, "ivhd", i);
 			if (ivhd_devs[i] == NULL) {
-				printf("AMD-Vi: cant find ivhd%d\n", i);
+				printf("AMD-Vi: can't find ivhd%d\n", i);
 				break;
 			}
 		}