Deleted Added
full compact
if_fxp.c (51473) if_fxp.c (51533)
1/*
2 * Copyright (c) 1995, David Greenman
3 * All rights reserved.
4 *
5 * Modifications to support NetBSD and media selection:
6 * Copyright (c) 1997 Jason R. Thorpe. All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

22 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28 * SUCH DAMAGE.
29 *
1/*
2 * Copyright (c) 1995, David Greenman
3 * All rights reserved.
4 *
5 * Modifications to support NetBSD and media selection:
6 * Copyright (c) 1997 Jason R. Thorpe. All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

22 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28 * SUCH DAMAGE.
29 *
30 * $FreeBSD: head/sys/dev/fxp/if_fxp.c 51473 1999-09-20 19:06:45Z wpaul $
30 * $FreeBSD: head/sys/dev/fxp/if_fxp.c 51533 1999-09-22 06:08:11Z wpaul $
31 */
32
33/*
34 * Intel EtherExpress Pro/100B PCI Fast Ethernet driver
35 */
36
37#include "bpf.h"
38

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

696static driver_t fxp_driver = {
697 "fxp",
698 fxp_methods,
699 sizeof(struct fxp_softc),
700};
701
702static devclass_t fxp_devclass;
703
31 */
32
33/*
34 * Intel EtherExpress Pro/100B PCI Fast Ethernet driver
35 */
36
37#include "bpf.h"
38

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

696static driver_t fxp_driver = {
697 "fxp",
698 fxp_methods,
699 sizeof(struct fxp_softc),
700};
701
702static devclass_t fxp_devclass;
703
704DRIVER_MODULE(fxp, pci, fxp_driver, fxp_devclass, 0, 0);
704DRIVER_MODULE(if_fxp, pci, fxp_driver, fxp_devclass, 0, 0);
705
706#endif /* __NetBSD__ */
707
708/*************************************************************
709 * End of operating system-specific autoconfiguration glue
710 *************************************************************/
711
712/*

--- 1292 unchanged lines hidden ---
705
706#endif /* __NetBSD__ */
707
708/*************************************************************
709 * End of operating system-specific autoconfiguration glue
710 *************************************************************/
711
712/*

--- 1292 unchanged lines hidden ---