diff options
author | phk <phk@FreeBSD.org> | 1996-09-08 10:44:18 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 1996-09-08 10:44:18 +0000 |
commit | 367da4b2c88a84a2fbed33b09494398382512e00 (patch) | |
tree | 5e9b397e570a9f0a4bea047f5c1002a376f639f6 /sys/pci/pcivar.h | |
parent | 40374960778da90588cc1074d25a89683cf25b5f (diff) | |
download | FreeBSD-src-367da4b2c88a84a2fbed33b09494398382512e00.zip FreeBSD-src-367da4b2c88a84a2fbed33b09494398382512e00.tar.gz |
Various cleanups for remanents of devconf.
Diffstat (limited to 'sys/pci/pcivar.h')
-rw-r--r-- | sys/pci/pcivar.h | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/sys/pci/pcivar.h b/sys/pci/pcivar.h index 51516ec..f8d2a95 100644 --- a/sys/pci/pcivar.h +++ b/sys/pci/pcivar.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** $Id: pcivar.h,v 1.10 1996/03/19 15:02:58 bde Exp $ +** $Id: pcivar.h,v 1.11 1996/09/06 23:09:01 phk Exp $ ** ** Declarations for pci device drivers. ** @@ -125,8 +125,6 @@ void pci_conf_write (pcici_t tag, u_long reg, u_long data); **----------------------------------------------------------------- */ -struct kern_devconf; - struct pci_device { char* pd_name; char* (*pd_probe ) (pcici_t tag, pcidi_t type); @@ -164,14 +162,6 @@ struct pci_info { u_char pi_unit; }; -#define PCI_EXT_CONF_LEN (16) -#define PCI_EXTERNAL_LEN (sizeof(struct pci_externalize_buffer)) - -struct pci_externalize_buffer { - struct pci_info peb_pci_info; - u_long peb_config[PCI_EXT_CONF_LEN]; -}; - /*----------------------------------------------------------------- ** ** Map a pci device to physical and virtual memory. |