* e1000_init_hw - Initialize hardware * @hw: pointer to the HW structure * * This inits the hardware readying it for operation. This is a function * pointer entry point called by drivers. **/
| 649 | * pointer entry point called by drivers. |
| 650 | **/ |
| 651 | s32 e1000_init_hw(struct e1000_hw *hw) |
| 652 | { |
| 653 | if (hw->mac.ops.init_hw) |
| 654 | return hw->mac.ops.init_hw(hw); |
| 655 | |
| 656 | return -E1000_ERR_CONFIG; |
| 657 | } |
| 658 | |
| 659 | /** |
| 660 | * e1000_setup_link - Configures link and flow control |
no outgoing calls
no test coverage detected