Lines Matching defs:ether_addr
393 static int bge_get_eaddr_fw(struct bge_softc *sc, uint8_t ether_addr[]);
6673 bge_get_eaddr_fw(struct bge_softc *sc, uint8_t ether_addr[])
6679 bge_get_eaddr_mem(struct bge_softc *sc, uint8_t ether_addr[])
6685 ether_addr[0] = (uint8_t)(mac_addr >> 8);
6686 ether_addr[1] = (uint8_t)mac_addr;
6688 ether_addr[2] = (uint8_t)(mac_addr >> 24);
6689 ether_addr[3] = (uint8_t)(mac_addr >> 16);
6690 ether_addr[4] = (uint8_t)(mac_addr >> 8);
6691 ether_addr[5] = (uint8_t)mac_addr;
6698 bge_get_eaddr_nvram(struct bge_softc *sc, uint8_t ether_addr[])
6705 return (bge_read_nvram(sc, ether_addr, mac_offset + 2,
6710 bge_get_eaddr_eeprom(struct bge_softc *sc, uint8_t ether_addr[])
6716 return (bge_read_eeprom(sc, ether_addr, BGE_EE_MAC_OFFSET + 2,