diff options
| author | Alexander Langer <alex@FreeBSD.org> | 1996-06-11 00:51:49 +0000 |
|---|---|---|
| committer | Alexander Langer <alex@FreeBSD.org> | 1996-06-11 00:51:49 +0000 |
| commit | 7966b47a3e70068c82cd62d8a38b9ad085774c6f (patch) | |
| tree | d52bf2e738adca203035906adcf16558fe81584f /sys/dev/ed/if_ed_pci.c | |
| parent | 97d15c106224ce5f18bcb543b5ae03a4b4624a3a (diff) | |
Notes
Diffstat (limited to 'sys/dev/ed/if_ed_pci.c')
| -rw-r--r-- | sys/dev/ed/if_ed_pci.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/sys/dev/ed/if_ed_pci.c b/sys/dev/ed/if_ed_pci.c index e8a000d6dc48..ce46c07ff92a 100644 --- a/sys/dev/ed/if_ed_pci.c +++ b/sys/dev/ed/if_ed_pci.c @@ -17,7 +17,7 @@ * 4. Modifications may be freely made to this file if the above conditions * are met. * - * $Id:$ + * $Id: if_ed_p.c,v 1.1 1996/05/18 17:56:40 se Exp $ */ #include <pci.h> @@ -35,21 +35,19 @@ #define PCI_DEVICE_ID_NE2000 0x802910ec +extern void *ed_attach_NE2000_pci __P((int, int)); + static char* ed_pci_probe __P((pcici_t tag, pcidi_t type)); static void ed_pci_attach __P((pcici_t config_id, int unit)); static u_long ed_pci_count = NED; -static void ed_pci_shutdown(void *arg) -{ -} - static struct pci_device ed_pci_driver = { "ed", ed_pci_probe, ed_pci_attach, &ed_pci_count, - ed_pci_shutdown, + NULL }; DATA_SET (pcidevice_set, ed_pci_driver); |
