aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/module-playground/mod-foo-c.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/module-playground/mod-foo-c.c')
-rw-r--r--testsuite/module-playground/mod-foo-c.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/testsuite/module-playground/mod-foo-c.c b/testsuite/module-playground/mod-foo-c.c
new file mode 100644
index 0000000..3afd35d
--- /dev/null
+++ b/testsuite/module-playground/mod-foo-c.c
@@ -0,0 +1,20 @@
+#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
+
+#include <linux/init.h>
+#include <linux/module.h>
+#include <linux/printk.h>
+
+static int __init foo_init(void)
+{
+ return 0;
+}
+module_init(foo_init);
+
+void print_fooC(void)
+{
+ pr_warn("fooC\n");
+}
+EXPORT_SYMBOL(print_fooC);
+
+MODULE_AUTHOR("Lucas De Marchi <lucas.demarchi@intel.com>");
+MODULE_LICENSE("LGPL");