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