summaryrefslogtreecommitdiff
path: root/pci
diff options
context:
space:
mode:
Diffstat (limited to 'pci')
-rw-r--r--pci/pci_main.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/pci/pci_main.c b/pci/pci_main.c
new file mode 100644
index 0000000..521aebc
--- /dev/null
+++ b/pci/pci_main.c
@@ -0,0 +1,10 @@
+#ifndef __KERNEL_MODULE__
+#define __KERNEL_MODULE__
+#endif
+
+int test_module_init(void) {
+ return 0;
+}
+
+void test_module_exit(void) {
+}