| 3090 | } |
| 3091 | |
| 3092 | void |
| 3093 | ngbe_dev_store_rx_queue(struct ngbe_hw *hw, uint16_t rx_queue_id) |
| 3094 | { |
| 3095 | u32 *reg = &hw->q_rx_regs[rx_queue_id * 8]; |
| 3096 | wr32(hw, NGBE_RXBAL(rx_queue_id), *(reg++)); |
| 3097 | wr32(hw, NGBE_RXBAH(rx_queue_id), *(reg++)); |
| 3098 | wr32(hw, NGBE_RXCFG(rx_queue_id), *(reg++) & ~NGBE_RXCFG_ENA); |
| 3099 | } |
| 3100 | |
| 3101 | void |
| 3102 | ngbe_dev_save_tx_queue(struct ngbe_hw *hw, uint16_t tx_queue_id) |
no test coverage detected