Deleted Added
full compact
if_vr.c (71962) if_vr.c (72084)
1/*
2 * Copyright (c) 1997, 1998
3 * Bill Paul <wpaul@ctr.columbia.edu>. 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

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

24 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
30 * THE POSSIBILITY OF SUCH DAMAGE.
31 *
1/*
2 * Copyright (c) 1997, 1998
3 * Bill Paul <wpaul@ctr.columbia.edu>. 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

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

24 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
30 * THE POSSIBILITY OF SUCH DAMAGE.
31 *
32 * $FreeBSD: head/sys/dev/vr/if_vr.c 71962 2001-02-03 16:29:10Z phk $
32 * $FreeBSD: head/sys/dev/vr/if_vr.c 72084 2001-02-06 10:12:15Z phk $
33 */
34
35/*
36 * VIA Rhine fast ethernet PCI NIC driver
37 *
38 * Supports various network adapters based on the VIA Rhine
39 * and Rhine II PCI controllers, including the D-Link DFE530TX.
40 * Datasheets are available at http://www.via.com.tw.

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

96
97MODULE_DEPEND(vr, miibus, 1, 1, 1);
98
99/* "controller miibus0" required. See GENERIC if you get errors here. */
100#include "miibus_if.h"
101
102#ifndef lint
103static const char rcsid[] =
33 */
34
35/*
36 * VIA Rhine fast ethernet PCI NIC driver
37 *
38 * Supports various network adapters based on the VIA Rhine
39 * and Rhine II PCI controllers, including the D-Link DFE530TX.
40 * Datasheets are available at http://www.via.com.tw.

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

96
97MODULE_DEPEND(vr, miibus, 1, 1, 1);
98
99/* "controller miibus0" required. See GENERIC if you get errors here. */
100#include "miibus_if.h"
101
102#ifndef lint
103static const char rcsid[] =
104 "$FreeBSD: head/sys/dev/vr/if_vr.c 71962 2001-02-03 16:29:10Z phk $";
104 "$FreeBSD: head/sys/dev/vr/if_vr.c 72084 2001-02-06 10:12:15Z phk $";
105#endif
106
107/*
108 * Various supported device vendors/types and their names.
109 */
110static struct vr_type vr_devs[] = {
111 { VIA_VENDORID, VIA_DEVICEID_RHINE,
112 "VIA VT3043 Rhine I 10/100BaseTX" },

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

525 return;
526 }
527
528 /* first, zot all the existing hash bits */
529 CSR_WRITE_4(sc, VR_MAR0, 0);
530 CSR_WRITE_4(sc, VR_MAR1, 0);
531
532 /* now program new ones */
105#endif
106
107/*
108 * Various supported device vendors/types and their names.
109 */
110static struct vr_type vr_devs[] = {
111 { VIA_VENDORID, VIA_DEVICEID_RHINE,
112 "VIA VT3043 Rhine I 10/100BaseTX" },

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

525 return;
526 }
527
528 /* first, zot all the existing hash bits */
529 CSR_WRITE_4(sc, VR_MAR0, 0);
530 CSR_WRITE_4(sc, VR_MAR1, 0);
531
532 /* now program new ones */
533 LIST_FOREACH(ifma, &ifp->if_multiaddrs, ifma_link) {
533 TAILQ_FOREACH(ifma, &ifp->if_multiaddrs, ifma_link) {
534 if (ifma->ifma_addr->sa_family != AF_LINK)
535 continue;
536 h = vr_calchash(LLADDR((struct sockaddr_dl *)ifma->ifma_addr));
537 if (h < 32)
538 hashes[0] |= (1 << h);
539 else
540 hashes[1] |= (1 << (h - 32));
541 mcnt++;

--- 1107 unchanged lines hidden ---
534 if (ifma->ifma_addr->sa_family != AF_LINK)
535 continue;
536 h = vr_calchash(LLADDR((struct sockaddr_dl *)ifma->ifma_addr));
537 if (h < 32)
538 hashes[0] |= (1 << h);
539 else
540 hashes[1] |= (1 << (h - 32));
541 mcnt++;

--- 1107 unchanged lines hidden ---