diff options
author | peter <peter@FreeBSD.org> | 1999-05-18 20:48:43 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1999-05-18 20:48:43 +0000 |
commit | 1f36ef3106131a350fb260cfb96c49a83a75d8e5 (patch) | |
tree | fd6ab80b480bb9d3f1774b9114610c0f46ad0bca /sys/pci/pcivar.h | |
parent | 1cd9ffa4489858725cf3f4511a4868cb1a75b5c8 (diff) | |
download | FreeBSD-src-1f36ef3106131a350fb260cfb96c49a83a75d8e5.zip FreeBSD-src-1f36ef3106131a350fb260cfb96c49a83a75d8e5.tar.gz |
Move pcibus (host -> pci bus) probe/attach routines from nexus
to pcibus.c. pci_cfgopen() becomes static and there are no more
bus #ifdef's in nexus.c.
Diffstat (limited to 'sys/pci/pcivar.h')
-rw-r--r-- | sys/pci/pcivar.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/pci/pcivar.h b/sys/pci/pcivar.h index 12c1bab..432551b 100644 --- a/sys/pci/pcivar.h +++ b/sys/pci/pcivar.h @@ -23,7 +23,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: pcivar.h,v 1.30 1999/05/09 20:25:01 peter Exp $ + * $Id: pcivar.h,v 1.31 1999/05/11 07:55:32 peter Exp $ * */ @@ -177,7 +177,6 @@ const char *ide_pci_match(struct device *dev); /* low level PCI config register functions provided by pcibus.c */ -int pci_cfgopen (void); int pci_cfgread (pcicfgregs *cfg, int reg, int bytes); void pci_cfgwrite (pcicfgregs *cfg, int reg, int data, int bytes); #ifdef __alpha__ |