diff options
Diffstat (limited to 'sys/dev/vx')
| -rw-r--r-- | sys/dev/vx/if_vx.c | 8 | ||||
| -rw-r--r-- | sys/dev/vx/if_vxreg.h | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/sys/dev/vx/if_vx.c b/sys/dev/vx/if_vx.c index b1d056fc8ba58..df8a606578ded 100644 --- a/sys/dev/vx/if_vx.c +++ b/sys/dev/vx/if_vx.c @@ -27,7 +27,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: if_vx.c,v 1.18 1998/07/13 09:52:53 bde Exp $ + * $Id: if_vx.c,v 1.17 1998/06/07 17:09:51 dfr Exp $ * */ @@ -131,6 +131,7 @@ static void vxsetfilter __P((struct vx_softc *)); static void vxgetlink __P((struct vx_softc *)); static void vxsetlink __P((struct vx_softc *)); /* int vxbusyeeprom __P((struct vx_softc *)); */ +/* void vxintr __P((void *)); */ struct vx_softc * vxalloc(unit) @@ -639,11 +640,10 @@ vxtxstat(sc) } void -vxintr(voidsc) - void *voidsc; +vxintr(sc) + struct vx_softc *sc; { register short status; - struct vx_softc *sc = voidsc; struct ifnet *ifp = &sc->arpcom.ac_if; for (;;) { diff --git a/sys/dev/vx/if_vxreg.h b/sys/dev/vx/if_vxreg.h index 688da0374649d..99708af18509e 100644 --- a/sys/dev/vx/if_vxreg.h +++ b/sys/dev/vx/if_vxreg.h @@ -452,5 +452,5 @@ extern struct vx_softc *vxalloc __P((int)); extern void vxfree __P((struct vx_softc *)); extern int vxattach __P((struct vx_softc *)); extern void vxstop __P((struct vx_softc *)); -extern void vxintr __P((void *)); +extern void vxintr __P((struct vx_softc *)); extern int vxbusyeeprom __P((struct vx_softc *)); |
