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.
24 lines
396 B
24 lines
396 B
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
|
|
|
|
#include <linux/init.h>
|
|
#include <linux/module.h>
|
|
#include <linux/printk.h>
|
|
|
|
void print_fooA(void);
|
|
void print_fooB(void);
|
|
void print_fooC(void);
|
|
|
|
static int __init foo_init(void)
|
|
{
|
|
print_fooA();
|
|
print_fooB();
|
|
print_fooC();
|
|
|
|
return 0;
|
|
}
|
|
|
|
module_init(foo_init);
|
|
|
|
MODULE_AUTHOR("Lucas De Marchi <lucas.demarchi@intel.com>");
|
|
MODULE_LICENSE("LGPL");
|