mirror of
https://github.com/sysprog21/lkmpg.git
synced 2025-02-17 01:32:44 +08:00
![Jim Huang](/assets/img/avatar_default.png)
Instead of using tab for indention, the style defaults to 4 spaces for the sake of compact layout.
14 lines
275 B
C
14 lines
275 B
C
/*
|
|
* stop.c - Illustration of multi filed modules
|
|
*/
|
|
|
|
#include <linux/kernel.h> /* We're doing kernel work */
|
|
#include <linux/module.h> /* Specifically, a module */
|
|
|
|
void cleanup_module()
|
|
{
|
|
pr_info("Short is the life of a kernel module\n");
|
|
}
|
|
|
|
MODULE_LICENSE("GPL");
|