Home | History | Annotate | Download | only in module-playground
      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 void dummy_export(void)
     16 {
     17 }
     18 EXPORT_SYMBOL(dummy_export);
     19 
     20 MODULE_AUTHOR("Lucas De Marchi <lucas.demarchi (at) intel.com>");
     21 MODULE_LICENSE("LGPL");
     22