git: f7523c8a19d0 - main - iser: Remove redundant linuxkpi MODULE_DEPEND
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 15 Nov 2021 06:05:56 UTC
The branch main has been updated by khng: URL: https://cgit.FreeBSD.org/src/commit/?id=f7523c8a19d008412ccc969b12eeb756613f3678 commit f7523c8a19d008412ccc969b12eeb756613f3678 Author: Ka Ho Ng <khng@FreeBSD.org> AuthorDate: 2021-11-15 06:04:08 +0000 Commit: Ka Ho Ng <khng@FreeBSD.org> CommitDate: 2021-11-15 06:04:08 +0000 iser: Remove redundant linuxkpi MODULE_DEPEND Since ibcore depends on linuxkpi, there is no need to pull in the linuxkpi dependency in iser. MFC after: 1 week Sponsored by: The FreeBSD Foundation Reviewed by: trasz Differential Revision: https://reviews.freebsd.org/D32977 --- sys/dev/iser/icl_iser.c | 1 - 1 file changed, 1 deletion(-) diff --git a/sys/dev/iser/icl_iser.c b/sys/dev/iser/icl_iser.c index be09a3649dd9..f3780a441e01 100644 --- a/sys/dev/iser/icl_iser.c +++ b/sys/dev/iser/icl_iser.c @@ -566,5 +566,4 @@ moduledata_t icl_iser_data = { DECLARE_MODULE(icl_iser, icl_iser_data, SI_SUB_DRIVERS, SI_ORDER_MIDDLE); MODULE_DEPEND(icl_iser, icl, 1, 1, 1); MODULE_DEPEND(icl_iser, ibcore, 1, 1, 1); -MODULE_DEPEND(icl_iser, linuxkpi, 1, 1, 1); MODULE_VERSION(icl_iser, 1);