Sophie

Sophie

distrib > Mageia > 7 > armv7hl > by-pkgid > 265a7483afc48e27c236b36e810be507 > files > 128

lkmpg-1.1.0-23.mga7.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");
}