Deleted Added
full compact
if_lge.c (229767) if_lge.c (242625)
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:

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

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
34#include <sys/cdefs.h>
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:

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

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
34#include <sys/cdefs.h>
35__FBSDID("$FreeBSD: head/sys/dev/lge/if_lge.c 229767 2012-01-07 09:41:57Z kevlo $");
35__FBSDID("$FreeBSD: head/sys/dev/lge/if_lge.c 242625 2012-11-05 19:16:27Z dim $");
36
37/*
38 * Level 1 LXT1001 gigabit ethernet driver for FreeBSD. Public
39 * documentation not available, but ask me nicely.
40 *
41 * The Level 1 chip is used on some D-Link, SMC and Addtron NICs.
42 * It's a 64-bit PCI part that supports TCP/IP checksum offload,
43 * VLAN tagging/insertion, GMII and TBI (1000baseX) ports. There

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

105#include <dev/lge/if_lgereg.h>
106
107/* "device miibus" required. See GENERIC if you get errors here. */
108#include "miibus_if.h"
109
110/*
111 * Various supported device vendors/types and their names.
112 */
36
37/*
38 * Level 1 LXT1001 gigabit ethernet driver for FreeBSD. Public
39 * documentation not available, but ask me nicely.
40 *
41 * The Level 1 chip is used on some D-Link, SMC and Addtron NICs.
42 * It's a 64-bit PCI part that supports TCP/IP checksum offload,
43 * VLAN tagging/insertion, GMII and TBI (1000baseX) ports. There

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

105#include <dev/lge/if_lgereg.h>
106
107/* "device miibus" required. See GENERIC if you get errors here. */
108#include "miibus_if.h"
109
110/*
111 * Various supported device vendors/types and their names.
112 */
113static const struct lge_type const lge_devs[] = {
113static const struct lge_type lge_devs[] = {
114 { LGE_VENDORID, LGE_DEVICEID, "Level 1 Gigabit Ethernet" },
115 { 0, 0, NULL }
116};
117
118static int lge_probe(device_t);
119static int lge_attach(device_t);
120static int lge_detach(device_t);
121

--- 1470 unchanged lines hidden ---
114 { LGE_VENDORID, LGE_DEVICEID, "Level 1 Gigabit Ethernet" },
115 { 0, 0, NULL }
116};
117
118static int lge_probe(device_t);
119static int lge_attach(device_t);
120static int lge_detach(device_t);
121

--- 1470 unchanged lines hidden ---