The structure of the kernel module

A complete kernel module should consist of the following structures.
(1) Module loading (entry) function (required).
(2) Module uninstall function (required).
(3) Module license statement (required).
(4) Module parameters (optional).
(5) Module export symbols (optional).
(6) Information statement such as the author of the module (optional).

Guess you like

Origin blog.csdn.net/anton_99/article/details/108571908