diff options
author | phk <phk@FreeBSD.org> | 1996-09-06 23:09:20 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 1996-09-06 23:09:20 +0000 |
commit | bca885205da7f15208946f0896edc2eda3caff01 (patch) | |
tree | 35dad08bf59366e84921fd4aad9718c2f9426a1b /sys/pci/pcivar.h | |
parent | 9640e2d9e8f825813ec445d294de60884ad82bc8 (diff) | |
download | FreeBSD-src-bca885205da7f15208946f0896edc2eda3caff01.zip FreeBSD-src-bca885205da7f15208946f0896edc2eda3caff01.tar.gz |
Remove devconf, it never grew up to be of any use.
Diffstat (limited to 'sys/pci/pcivar.h')
-rw-r--r-- | sys/pci/pcivar.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/pci/pcivar.h b/sys/pci/pcivar.h index 4f4a29f..51516ec 100644 --- a/sys/pci/pcivar.h +++ b/sys/pci/pcivar.h @@ -1,6 +1,6 @@ /************************************************************************** ** -** $Id: pcivar.h,v 1.9 1996/01/25 18:32:00 se Exp $ +** $Id: pcivar.h,v 1.10 1996/03/19 15:02:58 bde Exp $ ** ** Declarations for pci device drivers. ** @@ -132,7 +132,7 @@ struct pci_device { char* (*pd_probe ) (pcici_t tag, pcidi_t type); void (*pd_attach) (pcici_t tag, int unit); u_long *pd_count; - int (*pd_shutdown) (struct kern_devconf *, int); + int (*pd_shutdown) (int, int); }; /*----------------------------------------------------------------- @@ -161,6 +161,7 @@ struct pci_info { u_char pi_device; u_char pi_func; u_char pi_dummy; + u_char pi_unit; }; #define PCI_EXT_CONF_LEN (16) |