Files
Ciro Santilli b366bac0c5 panic
2017-05-14 11:59:32 +01:00

22 lines
329 B
C

/*
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>
MODULE_LICENSE("GPL");
int init_module(void)
{
printk(KERN_INFO "hello2 init\n");
return 0;
}
void cleanup_module(void)
{
printk(KERN_INFO "hello2 cleanup\n");
}