| 4579 | } |
| 4580 | |
| 4581 | void |
| 4582 | txgbe_dev_save_rx_queue(struct txgbe_hw *hw, uint16_t rx_queue_id) |
| 4583 | { |
| 4584 | u32 *reg = &hw->q_rx_regs[rx_queue_id * 8]; |
| 4585 | *(reg++) = rd32(hw, TXGBE_RXBAL(rx_queue_id)); |
| 4586 | *(reg++) = rd32(hw, TXGBE_RXBAH(rx_queue_id)); |
| 4587 | *(reg++) = rd32(hw, TXGBE_RXCFG(rx_queue_id)); |
| 4588 | } |
| 4589 | |
| 4590 | void |
| 4591 | txgbe_dev_store_rx_queue(struct txgbe_hw *hw, uint16_t rx_queue_id) |
no test coverage detected