Deleted Added
full compact
if_fxp.c (15132) if_fxp.c (16063)
1/*
2 * Copyright (c) 1995, David Greenman
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

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

19 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 * SUCH DAMAGE.
26 *
1/*
2 * Copyright (c) 1995, David Greenman
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

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

19 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 * SUCH DAMAGE.
26 *
27 * $Id: if_fxp.c,v 1.11 1996/02/06 18:51:24 wollman Exp $
27 * $Id: if_fxp.c,v 1.12 1996/04/08 01:31:41 davidg Exp $
28 */
29
30/*
31 * Intel EtherExpress Pro/100B PCI Fast Ethernet driver
32 */
33
34#include "bpfilter.h"
35

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

278 ifp->if_softc = sc;
279 ifp->if_unit = unit;
280 ifp->if_name = "fxp";
281 ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST;
282 ifp->if_ioctl = fxp_ioctl;
283 ifp->if_output = ether_output;
284 ifp->if_start = fxp_start;
285 ifp->if_watchdog = fxp_watchdog;
28 */
29
30/*
31 * Intel EtherExpress Pro/100B PCI Fast Ethernet driver
32 */
33
34#include "bpfilter.h"
35

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

278 ifp->if_softc = sc;
279 ifp->if_unit = unit;
280 ifp->if_name = "fxp";
281 ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_MULTICAST;
282 ifp->if_ioctl = fxp_ioctl;
283 ifp->if_output = ether_output;
284 ifp->if_start = fxp_start;
285 ifp->if_watchdog = fxp_watchdog;
286 ifp->if_baudrate = 100000000;
286
287 fxp_get_macaddr(sc);
288 printf("fxp%d: Ethernet address %6D\n", unit,
289 sc->arpcom.ac_enaddr, ":");
290
291 /*
292 * Attach the interface.
293 */

--- 847 unchanged lines hidden ---
287
288 fxp_get_macaddr(sc);
289 printf("fxp%d: Ethernet address %6D\n", unit,
290 sc->arpcom.ac_enaddr, ":");
291
292 /*
293 * Attach the interface.
294 */

--- 847 unchanged lines hidden ---