Sophie

Sophie

distrib > Mandriva > 2010.0 > x86_64 > by-pkgid > afdcfc364877ff5b5fc90cad008e9a19 > files > 128

lkmpg-1.1.0-15mdv2010.0.noarch.rpm

/*
 *  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("<1>Short is the life of a kernel module\n");
}