Home | History | Annotate | Download | only in ixgbe

Lines Matching refs:mac_addr

978  * @mac_addr: Adapter MAC address
984 s32 ixgbe_get_mac_addr_generic(struct ixgbe_hw *hw, u8 *mac_addr)
996 mac_addr[i] = (u8)(rar_low >> (i*8));
999 mac_addr[i+4] = (u8)(rar_high >> (i*8));
2376 * @mac_addr: pointer to MAC address.
2380 s32 ixgbe_validate_mac_addr(u8 *mac_addr)
2387 if (IXGBE_IS_MULTICAST(mac_addr)) {
2390 } else if (IXGBE_IS_BROADCAST(mac_addr)) {
2393 } else if (mac_addr[0] == 0 && mac_addr[1] == 0 && mac_addr[2] == 0 &&
2394 mac_addr[3] == 0 && mac_addr[4] == 0 && mac_addr[5] == 0) {
3577 * get and set mac_addr routines.