* ixgbe_stop_adapter - Disable Rx/Tx units * @hw: pointer to hardware structure * * Sets the adapter_stopped flag within ixgbe_hw struct. Clears interrupts, * disables transmit and receive units. The adapter_stopped flag is used by * the shared code and drivers to determine if the adapter is in a stopped * state and should not touch the hardware. **/
| 432 | * state and should not touch the hardware. |
| 433 | **/ |
| 434 | s32 ixgbe_stop_adapter(struct ixgbe_hw *hw) |
| 435 | { |
| 436 | return ixgbe_call_func(hw, hw->mac.ops.stop_adapter, (hw), |
| 437 | IXGBE_NOT_IMPLEMENTED); |
| 438 | } |
| 439 | |
| 440 | /** |
| 441 | * ixgbe_read_pba_string - Reads part number string from EEPROM |
no outgoing calls
no test coverage detected