blob: f335b6ff9cb4ce67342748a036ba069d4061c808 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#include <linux/init.h>
#include <linux/module.h>
void dummy_export(void);
static int __init test_module_init(void)
{
return 0;
}
static void test_module_exit(void)
{
}
module_init(test_module_init);
module_exit(test_module_exit);
void dummy_export(void)
{
}
EXPORT_SYMBOL(dummy_export);
MODULE_AUTHOR("Lucas De Marchi <lucas.demarchi@intel.com>");
MODULE_LICENSE("LGPL");
|