Lines Matching refs:ei
6753 const struct e1000_info *ei = e1000_info_tbl[ent->driver_data]; in e1000_probe() local
6763 if (ei->flags2 & FLAG2_DISABLE_ASPM_L0S) in e1000_probe()
6765 if (ei->flags2 & FLAG2_DISABLE_ASPM_L1) in e1000_probe()
6816 adapter->ei = ei; in e1000_probe()
6817 adapter->pba = ei->pba; in e1000_probe()
6818 adapter->flags = ei->flags; in e1000_probe()
6819 adapter->flags2 = ei->flags2; in e1000_probe()
6821 adapter->hw.mac.type = ei->mac; in e1000_probe()
6822 adapter->max_hw_frame_size = ei->max_hw_frame_size; in e1000_probe()
6866 memcpy(&hw->mac.ops, ei->mac_ops, sizeof(hw->mac.ops)); in e1000_probe()
6867 memcpy(&hw->nvm.ops, ei->nvm_ops, sizeof(hw->nvm.ops)); in e1000_probe()
6868 memcpy(&hw->phy.ops, ei->phy_ops, sizeof(hw->phy.ops)); in e1000_probe()
6870 err = ei->get_variants(adapter); in e1000_probe()