Deleted Added
full compact
if_lge.c (99498) if_lge.c (104094)
1/*
2 * Copyright (c) 2001 Wind River Systems
3 * Copyright (c) 1997, 1998, 1999, 2000, 2001
4 * Bill Paul <william.paul@windriver.com>. All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

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

25 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
31 * THE POSSIBILITY OF SUCH DAMAGE.
32 *
1/*
2 * Copyright (c) 2001 Wind River Systems
3 * Copyright (c) 1997, 1998, 1999, 2000, 2001
4 * Bill Paul <william.paul@windriver.com>. All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

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

25 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
31 * THE POSSIBILITY OF SUCH DAMAGE.
32 *
33 * $FreeBSD: head/sys/dev/lge/if_lge.c 99498 2002-07-06 16:34:32Z alfred $
33 * $FreeBSD: head/sys/dev/lge/if_lge.c 104094 2002-09-28 17:15:38Z phk $
34 */
35
36/*
37 * Level 1 LXT1001 gigabit ethernet driver for FreeBSD. Public
38 * documentation not available, but ask me nicely.
39 *
40 * Written by Bill Paul <william.paul@windriver.com>
41 * Wind River Systems

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

109
110#include <dev/lge/if_lgereg.h>
111
112/* "controller miibus0" required. See GENERIC if you get errors here. */
113#include "miibus_if.h"
114
115#ifndef lint
116static const char rcsid[] =
34 */
35
36/*
37 * Level 1 LXT1001 gigabit ethernet driver for FreeBSD. Public
38 * documentation not available, but ask me nicely.
39 *
40 * Written by Bill Paul <william.paul@windriver.com>
41 * Wind River Systems

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

109
110#include <dev/lge/if_lgereg.h>
111
112/* "controller miibus0" required. See GENERIC if you get errors here. */
113#include "miibus_if.h"
114
115#ifndef lint
116static const char rcsid[] =
117 "$FreeBSD: head/sys/dev/lge/if_lge.c 99498 2002-07-06 16:34:32Z alfred $";
117 "$FreeBSD: head/sys/dev/lge/if_lge.c 104094 2002-09-28 17:15:38Z phk $";
118#endif
119
120/*
121 * Various supported device vendors/types and their names.
122 */
123static struct lge_type lge_devs[] = {
124 { LGE_VENDORID, LGE_DEVICEID, "Level 1 Gigabit Ethernet" },
125 { 0, 0, NULL }

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

1049 ether_input(ifp, eh, m);
1050 }
1051
1052 sc->lge_cdata.lge_rx_cons = i;
1053
1054 return;
1055}
1056
118#endif
119
120/*
121 * Various supported device vendors/types and their names.
122 */
123static struct lge_type lge_devs[] = {
124 { LGE_VENDORID, LGE_DEVICEID, "Level 1 Gigabit Ethernet" },
125 { 0, 0, NULL }

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

1049 ether_input(ifp, eh, m);
1050 }
1051
1052 sc->lge_cdata.lge_rx_cons = i;
1053
1054 return;
1055}
1056
1057void
1057static void
1058lge_rxeoc(sc)
1059 struct lge_softc *sc;
1060{
1061 struct ifnet *ifp;
1062
1063 ifp = &sc->arpcom.ac_if;
1064 ifp->if_flags &= ~IFF_RUNNING;
1065 lge_init(sc);

--- 588 unchanged lines hidden ---
1058lge_rxeoc(sc)
1059 struct lge_softc *sc;
1060{
1061 struct ifnet *ifp;
1062
1063 ifp = &sc->arpcom.ac_if;
1064 ifp->if_flags &= ~IFF_RUNNING;
1065 lge_init(sc);

--- 588 unchanged lines hidden ---