Searched refs:san_mac_addr (Results 1 – 7 of 7) sorted by relevance
| /f-stack/dpdk/drivers/net/txgbe/base/ |
| H A D | txgbe_hw.h | 43 s32 txgbe_get_san_mac_addr(struct txgbe_hw *hw, u8 *san_mac_addr); 44 s32 txgbe_set_san_mac_addr(struct txgbe_hw *hw, u8 *san_mac_addr);
|
| H A D | txgbe_hw.c | 1482 s32 txgbe_get_san_mac_addr(struct txgbe_hw *hw, u8 *san_mac_addr) in txgbe_get_san_mac_addr() argument 1509 san_mac_addr[i * 2] = (u8)(san_mac_data); in txgbe_get_san_mac_addr() 1510 san_mac_addr[i * 2 + 1] = (u8)(san_mac_data >> 8); in txgbe_get_san_mac_addr() 1521 san_mac_addr[i] = 0xFF; in txgbe_get_san_mac_addr() 1532 s32 txgbe_set_san_mac_addr(struct txgbe_hw *hw, u8 *san_mac_addr) in txgbe_set_san_mac_addr() argument 1550 san_mac_data = (u16)((u16)(san_mac_addr[i * 2 + 1]) << 8); in txgbe_set_san_mac_addr() 1551 san_mac_data |= (u16)(san_mac_addr[i * 2]); in txgbe_set_san_mac_addr()
|
| H A D | txgbe_type.h | 448 s32 (*get_san_mac_addr)(struct txgbe_hw *hw, u8 *san_mac_addr); 449 s32 (*set_san_mac_addr)(struct txgbe_hw *hw, u8 *san_mac_addr);
|
| /f-stack/dpdk/drivers/net/ixgbe/base/ |
| H A D | ixgbe_common.h | 99 s32 ixgbe_get_san_mac_addr_generic(struct ixgbe_hw *hw, u8 *san_mac_addr); 100 s32 ixgbe_set_san_mac_addr_generic(struct ixgbe_hw *hw, u8 *san_mac_addr);
|
| H A D | ixgbe_api.h | 163 s32 ixgbe_get_san_mac_addr(struct ixgbe_hw *hw, u8 *san_mac_addr); 164 s32 ixgbe_set_san_mac_addr(struct ixgbe_hw *hw, u8 *san_mac_addr);
|
| H A D | ixgbe_api.c | 328 s32 ixgbe_get_san_mac_addr(struct ixgbe_hw *hw, u8 *san_mac_addr) in ixgbe_get_san_mac_addr() argument 331 (hw, san_mac_addr), IXGBE_NOT_IMPLEMENTED); in ixgbe_get_san_mac_addr() 341 s32 ixgbe_set_san_mac_addr(struct ixgbe_hw *hw, u8 *san_mac_addr) in ixgbe_set_san_mac_addr() argument 344 (hw, san_mac_addr), IXGBE_NOT_IMPLEMENTED); in ixgbe_set_san_mac_addr()
|
| H A D | ixgbe_common.c | 3547 s32 ixgbe_get_san_mac_addr_generic(struct ixgbe_hw *hw, u8 *san_mac_addr) in ixgbe_get_san_mac_addr_generic() argument 3577 san_mac_addr[i * 2] = (u8)(san_mac_data); in ixgbe_get_san_mac_addr_generic() 3578 san_mac_addr[i * 2 + 1] = (u8)(san_mac_data >> 8); in ixgbe_get_san_mac_addr_generic() 3589 san_mac_addr[i] = 0xFF; in ixgbe_get_san_mac_addr_generic() 3600 s32 ixgbe_set_san_mac_addr_generic(struct ixgbe_hw *hw, u8 *san_mac_addr) in ixgbe_set_san_mac_addr_generic() argument 3620 san_mac_data = (u16)((u16)(san_mac_addr[i * 2 + 1]) << 8); in ixgbe_set_san_mac_addr_generic() 3621 san_mac_data |= (u16)(san_mac_addr[i * 2]); in ixgbe_set_san_mac_addr_generic()
|