From 52e1f28ccdf4d8d91c64515c63cff077295227e1 Mon Sep 17 00:00:00 2001 From: christos Date: Sun, 8 May 2016 03:11:33 +0000 Subject: [PATCH] Catch up with other networking changes (John D. Baker) --- sys/dev/ppbus/if_plip.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/sys/dev/ppbus/if_plip.c b/sys/dev/ppbus/if_plip.c index 736ca73e794e..96f2201fcc2c 100644 --- a/sys/dev/ppbus/if_plip.c +++ b/sys/dev/ppbus/if_plip.c @@ -1,4 +1,4 @@ -/* $NetBSD: if_plip.c,v 1.26 2016/04/20 09:01:03 knakahara Exp $ */ +/* $NetBSD: if_plip.c,v 1.27 2016/05/08 03:11:33 christos Exp $ */ /*- * Copyright (c) 1997 Poul-Henning Kamp @@ -31,7 +31,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: if_plip.c,v 1.26 2016/04/20 09:01:03 knakahara Exp $"); +__KERNEL_RCSID(0, "$NetBSD: if_plip.c,v 1.27 2016/05/08 03:11:33 christos Exp $"); /* * Parallel port TCP/IP interfaces added. I looked at the driver from @@ -194,7 +194,7 @@ static void lpinittables(void); static void lpfreetables(void); static int lpioctl(struct ifnet *, u_long, void *); static int lpoutput(struct ifnet *, struct mbuf *, const struct sockaddr *, - struct rtentry *); + const struct rtentry *); static void lpstart(struct ifnet *); static void lp_intr(void *); @@ -699,7 +699,7 @@ lpoutbyte(u_char byte, int spin, device_t ppbus) /* Queue a packet for delivery */ static int lpoutput(struct ifnet *ifp, struct mbuf *m, const struct sockaddr *dst, - struct rtentry *rt) + const struct rtentry *rt) { struct lp_softc * sc = ifp->if_softc; device_t dev = sc->ppbus_dev.sc_dev; @@ -731,7 +731,7 @@ lpoutput(struct ifnet *ifp, struct mbuf *m, const struct sockaddr *dst, } IFQ_CLASSIFY(&ifp->if_snd, m, dst->sa_family); - IFQ_ENQUEUE(&ifp->if_snd, m, NULL, err); + IFQ_ENQUEUE(&ifp->if_snd, m, err); if(err == 0) { if((ifp->if_flags & IFF_OACTIVE) == 0) lpstart(ifp);