• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
2 
3 #include <linux/init.h>
4 #include <linux/module.h>
5 #include <linux/printk.h>
6 
7 void print_fooA(void);
8 void print_fooB(void);
9 void print_fooC(void);
10 
foo_init(void)11 static int __init foo_init(void)
12 {
13 	print_fooA();
14 	print_fooB();
15 	print_fooC();
16 
17 	return 0;
18 }
19 
20 module_init(foo_init);
21 
22 MODULE_AUTHOR("Lucas De Marchi <lucas.demarchi@intel.com>");
23 MODULE_LICENSE("LGPL");
24