Deleted Added
full compact
if_plip.c (191148) if_plip.c (207554)
1/*-
2 * Copyright (c) 1997 Poul-Henning Kamp
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 13 unchanged lines hidden (view full) ---

22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
26 * From Id: lpt.c,v 1.55.2.1 1996/11/12 09:08:38 phk Exp
27 */
28
29#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 1997 Poul-Henning Kamp
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 13 unchanged lines hidden (view full) ---

22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
26 * From Id: lpt.c,v 1.55.2.1 1996/11/12 09:08:38 phk Exp
27 */
28
29#include <sys/cdefs.h>
30__FBSDID("$FreeBSD: head/sys/dev/ppbus/if_plip.c 191148 2009-04-16 20:30:28Z kmacy $");
30__FBSDID("$FreeBSD: head/sys/dev/ppbus/if_plip.c 207554 2010-05-03 07:32:50Z sobomax $");
31
32/*
33 * Parallel port TCP/IP interfaces added. I looked at the driver from
34 * MACH but this is a complete rewrite, and btw. incompatible, and it
35 * should perform better too. I have never run the MACH driver though.
36 *
37 * This driver sends two bytes (0x08, 0x00) in front of each packet,
38 * to allow us to distinguish another format later.

--- 218 unchanged lines hidden (view full) ---

257 ifp->if_softc = lp;
258 if_initname(ifp, device_get_name(dev), device_get_unit(dev));
259 ifp->if_mtu = LPMTU;
260 ifp->if_flags = IFF_SIMPLEX | IFF_POINTOPOINT | IFF_MULTICAST;
261 ifp->if_ioctl = lpioctl;
262 ifp->if_output = lpoutput;
263 ifp->if_hdrlen = 0;
264 ifp->if_addrlen = 0;
31
32/*
33 * Parallel port TCP/IP interfaces added. I looked at the driver from
34 * MACH but this is a complete rewrite, and btw. incompatible, and it
35 * should perform better too. I have never run the MACH driver though.
36 *
37 * This driver sends two bytes (0x08, 0x00) in front of each packet,
38 * to allow us to distinguish another format later.

--- 218 unchanged lines hidden (view full) ---

257 ifp->if_softc = lp;
258 if_initname(ifp, device_get_name(dev), device_get_unit(dev));
259 ifp->if_mtu = LPMTU;
260 ifp->if_flags = IFF_SIMPLEX | IFF_POINTOPOINT | IFF_MULTICAST;
261 ifp->if_ioctl = lpioctl;
262 ifp->if_output = lpoutput;
263 ifp->if_hdrlen = 0;
264 ifp->if_addrlen = 0;
265 ifp->if_snd.ifq_maxlen = IFQ_MAXLEN;
265 ifp->if_snd.ifq_maxlen = ifqmaxlen;
266 if_attach(ifp);
267
268 bpfattach(ifp, DLT_NULL, sizeof(u_int32_t));
269
270 /*
271 * Attach our interrupt handler. It is only called while we
272 * own the ppbus.
273 */

--- 577 unchanged lines hidden ---
266 if_attach(ifp);
267
268 bpfattach(ifp, DLT_NULL, sizeof(u_int32_t));
269
270 /*
271 * Attach our interrupt handler. It is only called while we
272 * own the ppbus.
273 */

--- 577 unchanged lines hidden ---