diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2005-04-01 06:44:15 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2005-04-01 06:44:15 +0000 |
commit | 7b7bf2c10861e3377ce2425def9f1d17b4ef0b65 (patch) | |
tree | 72c6204fafcccf89b4acd27b1836cd10f8c3440f /sys/dev | |
parent | 83ebff49ddd3ca98388d1827346db6a9d68e7cfd (diff) |
- remove unused function em_print_link_status() used by FreeBSD
- add em_disable_vlans() which disables HW VLAN support; From FreeBSD
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/pci/if_em.c | 45 |
1 files changed, 14 insertions, 31 deletions
diff --git a/sys/dev/pci/if_em.c b/sys/dev/pci/if_em.c index be7ea6a64ed..0726535ffba 100644 --- a/sys/dev/pci/if_em.c +++ b/sys/dev/pci/if_em.c @@ -32,7 +32,7 @@ POSSIBILITY OF SUCH DAMAGE. ***************************************************************************/ /* $FreeBSD: if_em.c,v 1.46 2004/09/29 18:28:28 mlaier Exp $ */ -/* $OpenBSD: if_em.c,v 1.43 2005/03/31 15:31:22 brad Exp $ */ +/* $OpenBSD: if_em.c,v 1.44 2005/04/01 06:44:14 brad Exp $ */ #include "bpfilter.h" #include "vlan.h" @@ -179,11 +179,11 @@ void em_set_promisc(struct em_softc *); void em_disable_promisc(struct em_softc *); void em_set_multi(struct em_softc *); void em_print_hw_stats(struct em_softc *); -void em_print_link_status(struct em_softc *); void em_update_link_status(struct em_softc *); int em_get_buf(int i, struct em_softc *, struct mbuf *); void em_enable_vlans(struct em_softc *); +void em_disable_vlans(struct em_softc *); int em_encap(struct em_softc *, struct mbuf *); void em_smartspeed(struct em_softc *); int em_82547_fifo_workaround(struct em_softc *, int); @@ -1371,34 +1371,6 @@ em_local_timer(void *arg) } void -em_print_link_status(struct em_softc *sc) -{ - if (E1000_READ_REG(&sc->hw, STATUS) & E1000_STATUS_LU) { - if (sc->link_active == 0) { - em_get_speed_and_duplex(&sc->hw, - &sc->link_speed, - &sc->link_duplex); - printf("%s: Link is up %d Mbps %s\n", - sc->sc_dv.dv_xname, - sc->link_speed, - ((sc->link_duplex == FULL_DUPLEX) ? - "Full Duplex" : "Half Duplex")); - sc->link_active = 1; - sc->smartspeed = 0; - } - } else { - if (sc->link_active == 1) { - sc->link_speed = 0; - sc->link_duplex = 0; - printf("%s: Link is Down\n", sc->sc_dv.dv_xname); - sc->link_active = 0; - } - } - - return; -} - -void em_update_link_status(struct em_softc *sc) { struct ifnet *ifp = &sc->interface_data.ac_if; @@ -2665,7 +2637,6 @@ em_receive_checksum(struct em_softc *sc, mp->m_pkthdr.csum |= M_TCP_CSUM_IN_OK | M_UDP_CSUM_IN_OK; } - void em_enable_vlans(struct em_softc *sc) { @@ -2681,6 +2652,18 @@ em_enable_vlans(struct em_softc *sc) } void +em_disable_vlans(struct em_softc *sc) +{ + uint32_t ctrl; + + ctrl = E1000_READ_REG(&sc->hw, CTRL); + ctrl &= ~E1000_CTRL_VME; + E1000_WRITE_REG(&sc->hw, CTRL, ctrl); + + return; +} + +void em_enable_intr(struct em_softc *sc) { E1000_WRITE_REG(&sc->hw, IMS, (IMS_ENABLE_MASK)); |