git: cd79c46103aa - stable/12 - vmm(4): Fix a typo in a kernel message
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 28 Apr 2024 05:22:52 UTC
The branch stable/12 has been updated by gbe:
URL: https://cgit.FreeBSD.org/src/commit/?id=cd79c46103aadae5c04e3c01b936a7fdefa899c8
commit cd79c46103aadae5c04e3c01b936a7fdefa899c8
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:22:31 +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 86a9f558e32a..6f264a8482e5 100644
--- a/sys/amd64/vmm/amd/ivrs_drv.c
+++ b/sys/amd64/vmm/amd/ivrs_drv.c
@@ -419,7 +419,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;
}
}