Deleted Added
full compact
if_tx.c (119287) if_tx.c (119418)
1/*-
2 * Copyright (c) 1997 Semen Ustimenko (semenu@FreeBSD.org)
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

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

20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
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 */
27
1/*-
2 * Copyright (c) 1997 Semen Ustimenko (semenu@FreeBSD.org)
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

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

20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
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 */
27
28#include <sys/cdefs.h>
29__FBSDID("$FreeBSD: head/sys/dev/tx/if_tx.c 119418 2003-08-24 17:55:58Z obrien $");
30
28/*
29 * EtherPower II 10/100 Fast Ethernet (SMC 9432 serie)
30 *
31 * These cards are based on SMC83c17x (EPIC) chip and one of the various
32 * PHYs (QS6612, AC101 and LXT970 were seen). The media support depends on
33 * card model. All cards support 10baseT/UTP and 100baseTX half- and full-
34 * duplex (SMB9432TX). SMC9432BTX also supports 10baseT/BNC. SMC9432FTX also
35 * supports fibre optics.
36 *
37 * Thanks are going to Steve Bauer and Jason Wright.
38 */
39
40#include <sys/cdefs.h>
31/*
32 * EtherPower II 10/100 Fast Ethernet (SMC 9432 serie)
33 *
34 * These cards are based on SMC83c17x (EPIC) chip and one of the various
35 * PHYs (QS6612, AC101 and LXT970 were seen). The media support depends on
36 * card model. All cards support 10baseT/UTP and 100baseTX half- and full-
37 * duplex (SMB9432TX). SMC9432BTX also supports 10baseT/BNC. SMC9432FTX also
38 * supports fibre optics.
39 *
40 * Thanks are going to Steve Bauer and Jason Wright.
41 */
42
43#include <sys/cdefs.h>
41__FBSDID("$FreeBSD: head/sys/dev/tx/if_tx.c 119287 2003-08-22 07:08:17Z imp $");
44__FBSDID("$FreeBSD: head/sys/dev/tx/if_tx.c 119418 2003-08-24 17:55:58Z obrien $");
42
43#include <sys/param.h>
44#include <sys/systm.h>
45#include <sys/sockio.h>
46#include <sys/mbuf.h>
47#include <sys/kernel.h>
48#include <sys/socket.h>
49#include <sys/queue.h>

--- 1874 unchanged lines hidden ---
45
46#include <sys/param.h>
47#include <sys/systm.h>
48#include <sys/sockio.h>
49#include <sys/mbuf.h>
50#include <sys/kernel.h>
51#include <sys/socket.h>
52#include <sys/queue.h>

--- 1874 unchanged lines hidden ---