git: d623883d1127 - main - qat: Add a required MODULE_DEPEND for firmware(9)
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 28 Jul 2022 14:12:18 UTC
The branch main has been updated by markj:
URL: https://cgit.FreeBSD.org/src/commit/?id=d623883d11274ec4121f0b66ec1a035573c1da06
commit d623883d11274ec4121f0b66ec1a035573c1da06
Author: Mark Johnston <markj@FreeBSD.org>
AuthorDate: 2022-07-28 13:48:58 +0000
Commit: Mark Johnston <markj@FreeBSD.org>
CommitDate: 2022-07-28 14:11:59 +0000
qat: Add a required MODULE_DEPEND for firmware(9)
Reported by: kib
Sponsored by: The FreeBSD Foundation
---
sys/dev/qat/qat_common/qat_common_module.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/sys/dev/qat/qat_common/qat_common_module.c b/sys/dev/qat/qat_common/qat_common_module.c
index fca9997f7502..93abbbf16433 100644
--- a/sys/dev/qat/qat_common/qat_common_module.c
+++ b/sys/dev/qat/qat_common/qat_common_module.c
@@ -43,4 +43,5 @@ static moduledata_t qat_common_mod = { "qat_common", qat_common_modevent, 0 };
DECLARE_MODULE(qat_common, qat_common_mod, SI_SUB_DRIVERS, SI_ORDER_FIRST);
MODULE_VERSION(qat_common, 1);
+MODULE_DEPEND(qat_common, firmware, 1, 1, 1);
MODULE_DEPEND(qat_common, linuxkpi, 1, 1, 1);