diff options
author | bde <bde@FreeBSD.org> | 1995-12-16 00:27:59 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1995-12-16 00:27:59 +0000 |
commit | 662e3ea39bcded2d3a3922028e6ae5d89f9abc25 (patch) | |
tree | 204ae2946bbc3237295ee9384cf275356908e680 /sys/pci/if_vx.c | |
parent | 9f28e856714a08750a06cfe61671072870df468d (diff) | |
download | FreeBSD-src-662e3ea39bcded2d3a3922028e6ae5d89f9abc25.zip FreeBSD-src-662e3ea39bcded2d3a3922028e6ae5d89f9abc25.tar.gz |
Completed function declarations and/or added prototypes and/or added
#includes to get prototypes.
pci now uses a different interrupt handler type for interrupts that it
dispatches and the isa interrupt handler type for the interrupts that
it handles.
Diffstat (limited to 'sys/pci/if_vx.c')
-rw-r--r-- | sys/pci/if_vx.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/pci/if_vx.c b/sys/pci/if_vx.c index 23d98fa..301e444 100644 --- a/sys/pci/if_vx.c +++ b/sys/pci/if_vx.c @@ -101,6 +101,8 @@ #include <pci/pcivar.h> #include <pci/if_vxreg.h> +static int eeprom_rdy __P((int unit)); +static int get_e __P((int unit, int offset)); static int vxioctl __P((struct ifnet * ifp, int, caddr_t)); static void vxmbuffill __P((caddr_t, int)); static void vxmbufempty __P((struct vx_softc *)); |