MCPcopy Create free account
hub / github.com/F-Stack/f-stack / e1000_init_hw

Function e1000_init_hw

dpdk/drivers/net/e1000/base/e1000_api.c:651–657  ·  view source on GitHub ↗

* 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. **/

Source from the content-addressed store, hash-verified

649 * pointer entry point called by drivers.
650 **/
651s32 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

Callers 2

igb_hardware_initFunction · 0.85
em_hardware_initFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected