| 804 | } |
| 805 | |
| 806 | static void |
| 807 | ngbe_qinq_hw_strip_enable(struct rte_eth_dev *dev) |
| 808 | { |
| 809 | struct ngbe_hw *hw = ngbe_dev_hw(dev); |
| 810 | uint32_t ctrl; |
| 811 | |
| 812 | PMD_INIT_FUNC_TRACE(); |
| 813 | |
| 814 | ctrl = rd32(hw, NGBE_PORTCTL); |
| 815 | ctrl |= NGBE_PORTCTL_QINQ | NGBE_PORTCTL_VLANEXT; |
| 816 | wr32(hw, NGBE_PORTCTL, ctrl); |
| 817 | } |
| 818 | |
| 819 | void |
| 820 | ngbe_vlan_hw_strip_config(struct rte_eth_dev *dev) |
no test coverage detected