linux_common: retire extra module version.

The second 'linuxcommon' line was added by c66f5b079d
but 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
MFC after:		2 weeks
This commit is contained in:
Dmitry Chagin 2021-05-26 08:34:32 +03:00
parent 962b3a0926
commit 5184e2da41

View File

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