diff options
author | gallatin <gallatin@FreeBSD.org> | 2002-02-28 18:18:41 +0000 |
---|---|---|
committer | gallatin <gallatin@FreeBSD.org> | 2002-02-28 18:18:41 +0000 |
commit | 3af87f82d6519487f875dd2c58e1d74aec880a69 (patch) | |
tree | c59214d297698d7c73c4ce5df6b071d49301f8f5 /sys/alpha/pci/pcibus.h | |
parent | 1de506bf4e9b7b28ddfc2c5f88711e85f853998a (diff) | |
download | FreeBSD-src-3af87f82d6519487f875dd2c58e1d74aec880a69.zip FreeBSD-src-3af87f82d6519487f875dd2c58e1d74aec880a69.tar.gz |
recover from namespace collision caused by un-static'ing pci_alloc_resource()
in rev 1.187 of sys/dev/pci/pci.c
Diffstat (limited to 'sys/alpha/pci/pcibus.h')
-rw-r--r-- | sys/alpha/pci/pcibus.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/alpha/pci/pcibus.h b/sys/alpha/pci/pcibus.h index aa3e105..608b2a5 100644 --- a/sys/alpha/pci/pcibus.h +++ b/sys/alpha/pci/pcibus.h @@ -27,7 +27,7 @@ */ void pci_init_resources(void); -struct resource *pci_alloc_resource(device_t bus, device_t child, +struct resource *alpha_pci_alloc_resource(device_t bus, device_t child, int type, int *rid, u_long start, u_long end, u_long count, u_int flags); |