Home
last modified time | relevance | path

Searched refs:san_mac_data (Results 1 – 1 of 1) sorted by relevance

/titanic_41/usr/src/uts/common/io/ixgbe/
H A Dixgbe_common.c3054 u16 san_mac_data, san_mac_offset; in ixgbe_get_san_mac_addr_generic() local
3082 hw->eeprom.ops.read(hw, san_mac_offset, &san_mac_data); in ixgbe_get_san_mac_addr_generic()
3083 san_mac_addr[i * 2] = (u8)(san_mac_data); in ixgbe_get_san_mac_addr_generic()
3084 san_mac_addr[i * 2 + 1] = (u8)(san_mac_data >> 8); in ixgbe_get_san_mac_addr_generic()
3102 u16 san_mac_data, san_mac_offset; in ixgbe_set_san_mac_addr_generic() local
3122 san_mac_data = (u16)((u16)(san_mac_addr[i * 2 + 1]) << 8); in ixgbe_set_san_mac_addr_generic()
3123 san_mac_data |= (u16)(san_mac_addr[i * 2]); in ixgbe_set_san_mac_addr_generic()
3124 hw->eeprom.ops.write(hw, san_mac_offset, san_mac_data); in ixgbe_set_san_mac_addr_generic()