]> git.ipfire.org Git - thirdparty/kmod.git/blob - testsuite/module-playground/mod-simple.c
testsuite: port softdep-loop test to module-playground
[thirdparty/kmod.git] / testsuite / module-playground / mod-simple.c
1 #include <linux/init.h>
2 #include <linux/module.h>
3
4 static int __init test_module_init(void)
5 {
6 return 0;
7 }
8
9 static void test_module_exit(void)
10 {
11 }
12 module_init(test_module_init);
13 module_exit(test_module_exit);
14
15 MODULE_AUTHOR("Lucas De Marchi <lucas.demarchi@intel.com>");
16 MODULE_LICENSE("LGPL");