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.
25 lines
417 B
25 lines
417 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) |
|
{ |
|
printI(); |
|
printJ(); |
|
|
|
return 0; |
|
} |
|
module_init(test_module_init); |
|
|
|
void printI(void) |
|
{ |
|
pr_warn("Hello, world I\n"); |
|
} |
|
EXPORT_SYMBOL(printI); |
|
|
|
MODULE_AUTHOR("Lucas De Marchi <lucas.demarchi@intel.com>"); |
|
MODULE_LICENSE("LGPL");
|
|
|