| 3099 | } |
| 3100 | |
| 3101 | void |
| 3102 | ngbe_dev_save_tx_queue(struct ngbe_hw *hw, uint16_t tx_queue_id) |
| 3103 | { |
| 3104 | u32 *reg = &hw->q_tx_regs[tx_queue_id * 8]; |
| 3105 | *(reg++) = rd32(hw, NGBE_TXBAL(tx_queue_id)); |
| 3106 | *(reg++) = rd32(hw, NGBE_TXBAH(tx_queue_id)); |
| 3107 | *(reg++) = rd32(hw, NGBE_TXCFG(tx_queue_id)); |
| 3108 | } |
| 3109 | |
| 3110 | void |
| 3111 | ngbe_dev_store_tx_queue(struct ngbe_hw *hw, uint16_t tx_queue_id) |
no test coverage detected