diff options
Diffstat (limited to 'other/adore-ng/adore-ng.mod.c')
| -rw-r--r-- | other/adore-ng/adore-ng.mod.c | 17 |
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 | |||
| 11 | MODULE_INFO(vermagic, VERMAGIC_STRING); | ||
| 12 | |||
| 13 | static const char __module_depends[] | ||
| 14 | __attribute_used__ | ||
| 15 | __attribute__((section(".modinfo"))) = | ||
| 16 | "depends="; | ||
| 17 | |||
