* ixgbe_reset_hw - Performs a hardware reset * @hw: pointer to hardware structure * * Resets the hardware by resetting the transmit and receive units, masks and * clears all interrupts, performs a PHY reset, and performs a MAC reset **/
| 241 | * clears all interrupts, performs a PHY reset, and performs a MAC reset |
| 242 | **/ |
| 243 | s32 ixgbe_reset_hw(struct ixgbe_hw *hw) |
| 244 | { |
| 245 | return ixgbe_call_func(hw, hw->mac.ops.reset_hw, (hw), |
| 246 | IXGBE_NOT_IMPLEMENTED); |
| 247 | } |
| 248 | |
| 249 | /** |
| 250 | * ixgbe_start_hw - Prepares hardware for Rx/Tx |
no outgoing calls
no test coverage detected