move all projects into the trunk directory
[lttv.git] / trunk / tests / kernel / ltt-facility-loader-tests.mod.c
diff --git a/trunk/tests/kernel/ltt-facility-loader-tests.mod.c b/trunk/tests/kernel/ltt-facility-loader-tests.mod.c
new file mode 100644 (file)
index 0000000..e5bbf0e
--- /dev/null
@@ -0,0 +1,20 @@
+#include <linux/module.h>
+#include <linux/vermagic.h>
+#include <linux/compiler.h>
+
+MODULE_INFO(vermagic, VERMAGIC_STRING);
+
+struct module __this_module
+__attribute__((section(".gnu.linkonce.this_module"))) = {
+ .name = KBUILD_MODNAME,
+ .init = init_module,
+#ifdef CONFIG_MODULE_UNLOAD
+ .exit = cleanup_module,
+#endif
+};
+
+static const char __module_depends[]
+__attribute_used__
+__attribute__((section(".modinfo"))) =
+"depends=";
+
This page took 0.022548 seconds and 4 git commands to generate.