mirror of
https://github.com/sysprog21/lkmpg.git
synced 2024-11-22 15:46:59 +08:00
10c7a9433a
This patch makes source listing shorter and more compact, that helps when browsing.
14 lines
275 B
C
14 lines
275 B
C
/*
|
|
* stop.c - Illustration of multi filed modules
|
|
*/
|
|
|
|
#include <linux/kernel.h> /* We are 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");
|