You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
295 B
17 lines
295 B
#include <linux/init.h>
|
|
#include <linux/module.h>
|
|
|
|
static int __init test_module_init(void)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
static void test_module_exit(void)
|
|
{
|
|
}
|
|
module_init(test_module_init);
|
|
module_exit(test_module_exit);
|
|
|
|
MODULE_AUTHOR("Lucas De Marchi <lucas.demarchi@intel.com>");
|
|
MODULE_LICENSE("LGPL");
|