1
0
mirror of https://github.com/bashrc/LKMPG.git synced 2018-06-11 03:06:54 +02:00
Files
LKMPG/older_versions/4.12.12/examples/hello-1.c
Bob Mottram d694ae729c 4.14.8
2018-01-03 17:36:28 +00:00

21 lines
398 B
C

/*
* hello-1.c - The simplest kernel module.
*/
#include <linux/module.h> /* Needed by all modules */
#include <linux/kernel.h> /* Needed for KERN_INFO */
int init_module(void)
{
pr_info("Hello world 1.\n");
/*
* A non 0 return means init_module failed; module can't be loaded.
*/
return 0;
}
void cleanup_module(void)
{
pr_info("Goodbye world 1.\n");
}