| 3689 | } |
| 3690 | |
| 3691 | static int |
| 3692 | igbvf_default_mac_addr_set(struct rte_eth_dev *dev, struct rte_ether_addr *addr) |
| 3693 | { |
| 3694 | struct e1000_hw *hw = |
| 3695 | E1000_DEV_PRIVATE_TO_HW(dev->data->dev_private); |
| 3696 | |
| 3697 | /* index is not used by rar_set() */ |
| 3698 | hw->mac.ops.rar_set(hw, (void *)addr, 0); |
| 3699 | return 0; |
| 3700 | } |
| 3701 | |
| 3702 | |
| 3703 | static int |