Move files up on tree

This commit is contained in:
Ciro Santilli
2017-05-12 05:06:03 +01:00
parent 0a230e8620
commit 992783484b
9 changed files with 29 additions and 31 deletions

19
kernel_module/hello2.c Normal file
View File

@@ -0,0 +1,19 @@
/*
Hello world module 2.
Mostly to check that our build infrastructure can handle more than one module!
*/
#include <linux/module.h>
#include <linux/kernel.h>
int init_module(void)
{
printk(KERN_INFO "hello2 init\n");
return 0;
}
void cleanup_module(void)
{
printk(KERN_INFO "hello2 cleanup\n");
}