* ixgbe_clear_vmdq - Disassociate a VMDq index from a receive address * @hw: pointer to hardware structure * @rar: receive address register index to disassociate with VMDq index * @vmdq: VMDq set or pool index **/
| 958 | * @vmdq: VMDq set or pool index |
| 959 | **/ |
| 960 | s32 ixgbe_clear_vmdq(struct ixgbe_hw *hw, u32 rar, u32 vmdq) |
| 961 | { |
| 962 | return ixgbe_call_func(hw, hw->mac.ops.clear_vmdq, (hw, rar, vmdq), |
| 963 | IXGBE_NOT_IMPLEMENTED); |
| 964 | } |
| 965 | |
| 966 | /** |
| 967 | * ixgbe_init_rx_addrs - Initializes receive address filters. |
no outgoing calls
no test coverage detected