mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-13 20:12:26 +00:00
14 lines
194 B
C
14 lines
194 B
C
#include <linux/module.h>
|
|
#include <linux/kernel.h>
|
|
|
|
int init_module(void)
|
|
{
|
|
printk(KERN_INFO "hello init\n");
|
|
return 0;
|
|
}
|
|
|
|
void cleanup_module(void)
|
|
{
|
|
printk(KERN_INFO "hello cleanup\n");
|
|
}
|