From 2fb81f37d20fd442d1954a7356e3ab7f88314a9c Mon Sep 17 00:00:00 2001 From: Nathan Lee Date: Sat, 13 Jun 2026 21:24:33 -0500 Subject: create support for kernel modules (but don't implement them yet) --- pci/pci_main.c | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 pci/pci_main.c (limited to 'pci') 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) { +} -- cgit v1.2.3