From 7458694ea666ab108105dc24fe4ca197d634a3a8 Mon Sep 17 00:00:00 2001 From: Nathan Lee Date: Sun, 26 Jul 2026 20:29:25 -0500 Subject: remove pci subsystem and replace it with console controllers --- console/module_main.c | 10 ++++++++++ pci/pci_main.c | 10 ---------- 2 files changed, 10 insertions(+), 10 deletions(-) create mode 100644 console/module_main.c delete mode 100644 pci/pci_main.c diff --git a/console/module_main.c b/console/module_main.c new file mode 100644 index 0000000..521aebc --- /dev/null +++ b/console/module_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) { +} diff --git a/pci/pci_main.c b/pci/pci_main.c deleted file mode 100644 index 521aebc..0000000 --- a/pci/pci_main.c +++ /dev/null @@ -1,10 +0,0 @@ -#ifndef __KERNEL_MODULE__ -#define __KERNEL_MODULE__ -#endif - -int test_module_init(void) { - return 0; -} - -void test_module_exit(void) { -} -- cgit v1.2.3