Searched refs:san_mac_addr (Results 1 - 4 of 4) sorted by relevance

/freebsd-11-stable/sys/dev/ixgbe/
H A Dixgbe_common.h131 s32 ixgbe_get_san_mac_addr_generic(struct ixgbe_hw *hw, u8 *san_mac_addr);
132 s32 ixgbe_set_san_mac_addr_generic(struct ixgbe_hw *hw, u8 *san_mac_addr);
H A Dixgbe_api.h190 s32 ixgbe_get_san_mac_addr(struct ixgbe_hw *hw, u8 *san_mac_addr);
191 s32 ixgbe_set_san_mac_addr(struct ixgbe_hw *hw, u8 *san_mac_addr);
H A Dixgbe_api.c324 * @san_mac_addr: SAN MAC address
329 s32 ixgbe_get_san_mac_addr(struct ixgbe_hw *hw, u8 *san_mac_addr) argument
332 (hw, san_mac_addr), IXGBE_NOT_IMPLEMENTED);
338 * @san_mac_addr: SAN MAC address
342 s32 ixgbe_set_san_mac_addr(struct ixgbe_hw *hw, u8 *san_mac_addr) argument
345 (hw, san_mac_addr), IXGBE_NOT_IMPLEMENTED);
H A Dixgbe_common.c3577 * @san_mac_addr: SAN MAC address
3584 s32 ixgbe_get_san_mac_addr_generic(struct ixgbe_hw *hw, u8 *san_mac_addr) argument
3614 san_mac_addr[i * 2] = (u8)(san_mac_data);
3615 san_mac_addr[i * 2 + 1] = (u8)(san_mac_data >> 8);
3626 san_mac_addr[i] = 0xFF;
3633 * @san_mac_addr: SAN MAC address
3637 s32 ixgbe_set_san_mac_addr_generic(struct ixgbe_hw *hw, u8 *san_mac_addr) argument
3657 san_mac_data = (u16)((u16)(san_mac_addr[i * 2 + 1]) << 8);
3658 san_mac_data |= (u16)(san_mac_addr[i * 2]);

Completed in 83 milliseconds