| 3081 | } |
| 3082 | |
| 3083 | void |
| 3084 | ngbe_dev_save_rx_queue(struct ngbe_hw *hw, uint16_t rx_queue_id) |
| 3085 | { |
| 3086 | u32 *reg = &hw->q_rx_regs[rx_queue_id * 8]; |
| 3087 | *(reg++) = rd32(hw, NGBE_RXBAL(rx_queue_id)); |
| 3088 | *(reg++) = rd32(hw, NGBE_RXBAH(rx_queue_id)); |
| 3089 | *(reg++) = rd32(hw, NGBE_RXCFG(rx_queue_id)); |
| 3090 | } |
| 3091 | |
| 3092 | void |
| 3093 | ngbe_dev_store_rx_queue(struct ngbe_hw *hw, uint16_t rx_queue_id) |
no test coverage detected