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
This commit is contained in:
Christos Longros
2026-03-27 22:03:24 -06:00
committed by Warner Losh
parent beab2fe924
commit ccc235fe02
+1 -1
View File
@@ -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);