From 99867152a5b37879ffe6535df90329ca0a199aa0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20E=C3=9Fer?= Date: Tue, 21 Jan 1997 23:41:42 +0000 Subject: [PATCH] Add PCI LKM support: The new function pci_register_lkm (struct pci_device *dvp) appends the driver to the list of known PCI drivers, and initiates a PCI bus rescan. --- sys/pci/pcibus.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sys/pci/pcibus.h b/sys/pci/pcibus.h index a44b33eee5d..a4635f4ed2a 100644 --- a/sys/pci/pcibus.h +++ b/sys/pci/pcibus.h @@ -95,4 +95,6 @@ struct pcibus { extern struct linker_set pcibus_set; +int pci_register_lkm (struct pci_device *dvp); + #endif