summaryrefslogtreecommitdiff
path: root/other/adore-ng/adore-ng.mod.c
diff options
context:
space:
mode:
Diffstat (limited to 'other/adore-ng/adore-ng.mod.c')
-rw-r--r--other/adore-ng/adore-ng.mod.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/other/adore-ng/adore-ng.mod.c b/other/adore-ng/adore-ng.mod.c
new file mode 100644
index 0000000..807478c
--- /dev/null
+++ b/other/adore-ng/adore-ng.mod.c
@@ -0,0 +1,17 @@
1#define MODULE
2#define __KERNEL__
3#ifdef MODVERSIONS
4#include <linux/modversions.h>
5#endif
6
7#include <linux/module.h>
8#include <linux/vermagic.h>
9#include <linux/compiler.h>
10
11MODULE_INFO(vermagic, VERMAGIC_STRING);
12
13static const char __module_depends[]
14__attribute_used__
15__attribute__((section(".modinfo"))) =
16"depends=";
17