git: ccc235fe0229 - main - vmgenc: fix typo in MODULE_DEPEND declaration
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 28 Mar 2026 04:05:00 UTC
The branch main has been updated by imp:
URL: https://cgit.FreeBSD.org/src/commit/?id=ccc235fe0229685512ea7b3d8ed1ecb61dd388f5
commit ccc235fe0229685512ea7b3d8ed1ecb61dd388f5
Author: Christos Longros <chris.longros@gmail.com>
AuthorDate: 2026-03-28 04:03:24 +0000
Commit: Warner Losh <imp@FreeBSD.org>
CommitDate: 2026-03-28 04:03:35 +0000
vmgenc: fix typo in MODULE_DEPEND declaration
The random_harvestq dependency was registered under the misspelled
name "vemgenc" instead of "vmgenc", causing the dependency to not
be associated with the correct module.
Signed-off-by: Christos Longros <chris.longros@gmail.com>
Reviewed by: cem, imp
Differential Revision: https://reviews.freebsd.org/D56012
---
sys/dev/vmgenc/vmgenc_acpi.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys/dev/vmgenc/vmgenc_acpi.c b/sys/dev/vmgenc/vmgenc_acpi.c
index 18519a8e4f22..59fcbd5346ba 100644
--- a/sys/dev/vmgenc/vmgenc_acpi.c
+++ b/sys/dev/vmgenc/vmgenc_acpi.c
@@ -261,4 +261,4 @@ static driver_t vmgenc_driver = {
DRIVER_MODULE(vmgenc, acpi, vmgenc_driver, NULL, NULL);
MODULE_DEPEND(vmgenc, acpi, 1, 1, 1);
-MODULE_DEPEND(vemgenc, random_harvestq, 1, 1, 1);
+MODULE_DEPEND(vmgenc, random_harvestq, 1, 1, 1);