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.
27 lines
439 B
27 lines
439 B
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
|
|
|
#include <linux/init.h> |
|
#include <linux/module.h> |
|
#include <linux/printk.h> |
|
|
|
#include "mod-loop.h" |
|
|
|
static int __init test_module_init(void) |
|
{ |
|
printB(); |
|
printC(); |
|
printF(); |
|
printG(); |
|
|
|
return 0; |
|
} |
|
module_init(test_module_init); |
|
|
|
void printB(void) |
|
{ |
|
pr_warn("Hello, world B\n"); |
|
} |
|
EXPORT_SYMBOL(printB); |
|
|
|
MODULE_AUTHOR("Lucas De Marchi <lucas.demarchi@intel.com>"); |
|
MODULE_LICENSE("LGPL");
|
|
|