summaryrefslogtreecommitdiff
path: root/pci/pci_main.c
diff options
context:
space:
mode:
authorNathan Lee <me@nwlee.tech>2026-06-13 21:24:33 -0500
committerNathan Lee <me@nwlee.tech>2026-06-13 21:24:33 -0500
commit2fb81f37d20fd442d1954a7356e3ab7f88314a9c (patch)
tree72a63c6c848d1ac748804000a2ed1debf1fc789b /pci/pci_main.c
parent4d843a5e03c91867614c94829c5255bc067a90c6 (diff)
create support for kernel modules (but don't implement them yet)
Diffstat (limited to 'pci/pci_main.c')
-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) {
+}