diff options
author | Freya Murphy <freya@freyacat.org> | 2025-04-16 16:48:56 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2025-04-16 16:48:56 -0400 |
commit | 730aafc1758e4096853c2491345901a296b4cc3e (patch) | |
tree | 45f8ffde614a9d30f0c93e1155fc6d799d10e94f /kernel/drivers/pci.c | |
parent | add binary radix (%b) to printf (diff) | |
download | comus-730aafc1758e4096853c2491345901a296b4cc3e.tar.gz comus-730aafc1758e4096853c2491345901a296b4cc3e.tar.bz2 comus-730aafc1758e4096853c2491345901a296b4cc3e.zip |
remove all printing to report functions
Diffstat (limited to 'kernel/drivers/pci.c')
-rw-r--r-- | kernel/drivers/pci.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/kernel/drivers/pci.c b/kernel/drivers/pci.c index e84ca11..ce2583f 100644 --- a/kernel/drivers/pci.c +++ b/kernel/drivers/pci.c @@ -134,6 +134,10 @@ void pci_init(void) } } } +} + +void pci_report(void) +{ kprintf("PCI DEVICES\n"); for (size_t i = 0; i < pci_table_next; i++) { print_device(&pci_table[i]); |