mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
linux_common: retire extra module version.
The second 'linuxcommon' line was added byc66f5b079dbut Linuxulator's modules dependend on 'linux_common'. To avoid such mistakes in the future rename moduledata name and module name to 'linux_common' and retire 'linuxcommon' line. Reviewed by: emaste Differential Revision: https://reviews.freebsd.org/D30409 (cherry picked from commit5184e2da41)
This commit is contained in:
parent
37370a6773
commit
e06cbb2b7a
1 changed files with 3 additions and 5 deletions
|
|
@ -43,8 +43,6 @@ __FBSDID("$FreeBSD$");
|
|||
#include <compat/linux/linux_mib.h>
|
||||
#include <compat/linux/linux_util.h>
|
||||
|
||||
MODULE_VERSION(linux_common, 1);
|
||||
|
||||
SET_DECLARE(linux_device_handler_set, struct linux_device_handler);
|
||||
|
||||
TAILQ_HEAD(, linux_ioctl_handler_element) linux_ioctl_handlers =
|
||||
|
|
@ -83,10 +81,10 @@ linux_common_modevent(module_t mod, int type, void *data)
|
|||
}
|
||||
|
||||
static moduledata_t linux_common_mod = {
|
||||
"linuxcommon",
|
||||
"linux_common",
|
||||
linux_common_modevent,
|
||||
0
|
||||
};
|
||||
|
||||
DECLARE_MODULE(linuxcommon, linux_common_mod, SI_SUB_EXEC, SI_ORDER_ANY);
|
||||
MODULE_VERSION(linuxcommon, 1);
|
||||
DECLARE_MODULE(linux_common, linux_common_mod, SI_SUB_EXEC, SI_ORDER_ANY);
|
||||
MODULE_VERSION(linux_common, 1);
|
||||
|
|
|
|||
Loading…
Reference in a new issue