LDP/LDP/guide/docbook/lkmpg-2.6/lkmpg-examples/02-HelloWorld/stop.c

12 lines
257 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()
{
printk(KERN_INFO "Short is the life of a kernel module\n");
}