Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 28 Mar 2026 04:05:00 +0000
From:      Warner Losh <imp@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Cc:        Christos Longros <chris.longros@gmail.com>
Subject:   git: ccc235fe0229 - main - vmgenc: fix typo in MODULE_DEPEND declaration
Message-ID:  <69c7536c.33834.15cfb8e0@gitrepo.freebsd.org>

index | next in thread | raw e-mail

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);


home | help

Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?69c7536c.33834.15cfb8e0>