Deleted Added
full compact
if_ie.c (60536) if_ie.c (63090)
1/*-
2 * Copyright (c) 1992, 1993, University of Vermont and State
3 * Agricultural College.
4 * Copyright (c) 1992, 1993, Garrett A. Wollman.
5 *
6 * Portions:
7 * Copyright (c) 1990, 1991, William F. Jolitz
8 * Copyright (c) 1990, The Regents of the University of California

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

42 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
43 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
44 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
45 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
46 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
47 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
48 * SUCH DAMAGE.
49 *
1/*-
2 * Copyright (c) 1992, 1993, University of Vermont and State
3 * Agricultural College.
4 * Copyright (c) 1992, 1993, Garrett A. Wollman.
5 *
6 * Portions:
7 * Copyright (c) 1990, 1991, William F. Jolitz
8 * Copyright (c) 1990, The Regents of the University of California

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

42 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
43 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
44 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
45 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
46 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
47 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
48 * SUCH DAMAGE.
49 *
50 * $FreeBSD: head/sys/dev/ie/if_ie.c 60536 2000-05-14 02:18:43Z archie $
50 * $FreeBSD: head/sys/dev/ie/if_ie.c 63090 2000-07-13 22:54:34Z archie $
51 *
52 * MAINTAINER: Matthew N. Dodd <winter@jurai.net>
53 */
54
55/*
56 * Intel 82586 Ethernet chip
57 * Register, bit, and structure definitions.
58 *

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

787 ifp->if_type = IFT_ETHER;
788 ifp->if_addrlen = 6;
789 ifp->if_hdrlen = 14;
790
791 if (ie->hard_type == IE_EE16)
792 EVENTHANDLER_REGISTER(shutdown_post_sync, ee16_shutdown,
793 ie, SHUTDOWN_PRI_DEFAULT);
794
51 *
52 * MAINTAINER: Matthew N. Dodd <winter@jurai.net>
53 */
54
55/*
56 * Intel 82586 Ethernet chip
57 * Register, bit, and structure definitions.
58 *

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

787 ifp->if_type = IFT_ETHER;
788 ifp->if_addrlen = 6;
789 ifp->if_hdrlen = 14;
790
791 if (ie->hard_type == IE_EE16)
792 EVENTHANDLER_REGISTER(shutdown_post_sync, ee16_shutdown,
793 ie, SHUTDOWN_PRI_DEFAULT);
794
795 bpfattach(ifp, DLT_EN10MB, sizeof(struct ether_header));
796
797 if_attach(ifp);
798 ether_ifattach(ifp);
795 ether_ifattach(ifp, ETHER_BPF_SUPPORTED);
799 return (1);
800}
801
802/*
803 * What to do upon receipt of an interrupt.
804 */
805static void
806ieintr(int unit)

--- 1380 unchanged lines hidden ---
796 return (1);
797}
798
799/*
800 * What to do upon receipt of an interrupt.
801 */
802static void
803ieintr(int unit)

--- 1380 unchanged lines hidden ---