logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

MODULE_VERSION — set kernel module version

Authors

       This manual page was written by Alexander Langer <alex@FreeBSD.org>.

Debian                                           March 11, 2001                                MODULE_VERSION(9)

Description

       The  MODULE_VERSION()  macro  sets  the version of the module called name.  Other kernel modules can then
       depend on this module (see MODULE_DEPEND(9)).

Examples

       MODULE_VERSION(foo, 1);

Name

       MODULE_VERSION — set kernel module version

See Also

DECLARE_MODULE(9), module(9), MODULE_DEPEND(9)

Synopsis

#include<sys/param.h>#include<sys/module.h>MODULE_VERSION(name, intversion);

See Also