1
0

Add example kernel module

This commit is contained in:
2018-10-07 10:48:25 +00:00
parent 0e03daf21c
commit 97842d8753
5 changed files with 62 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
#include <linux/module.h>
#include <linux/kernel.h>
int init_module(void)
{
return 0;
}
void cleanup_module(void)
{
}
MODULE_LICENSE("GPL");