mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-20 00:11:22 +00:00
e1000e: 82573 can use eerd method to read eeprom
This simplifies the 82571/2/3 family initialization a bit and removes an initialization table no longer needed. Signed-off-by: Auke Kok <auke-jan.h.kok@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com> Signed-off-by: Jeff Garzik <jeff@garzik.org>
This commit is contained in:
parent
ac0b3509f0
commit
31f8c4fe5d
@ -1280,16 +1280,6 @@ static struct e1000_phy_operations e82_phy_ops_m88 = {
|
||||
};
|
||||
|
||||
static struct e1000_nvm_operations e82571_nvm_ops = {
|
||||
.acquire_nvm = e1000_acquire_nvm_82571,
|
||||
.read_nvm = e1000e_read_nvm_spi,
|
||||
.release_nvm = e1000_release_nvm_82571,
|
||||
.update_nvm = e1000_update_nvm_checksum_82571,
|
||||
.valid_led_default = e1000_valid_led_default_82571,
|
||||
.validate_nvm = e1000_validate_nvm_checksum_82571,
|
||||
.write_nvm = e1000_write_nvm_82571,
|
||||
};
|
||||
|
||||
static struct e1000_nvm_operations e82573_nvm_ops = {
|
||||
.acquire_nvm = e1000_acquire_nvm_82571,
|
||||
.read_nvm = e1000e_read_nvm_eerd,
|
||||
.release_nvm = e1000_release_nvm_82571,
|
||||
@ -1355,6 +1345,6 @@ struct e1000_info e1000_82573_info = {
|
||||
.get_invariants = e1000_get_invariants_82571,
|
||||
.mac_ops = &e82571_mac_ops,
|
||||
.phy_ops = &e82_phy_ops_m88,
|
||||
.nvm_ops = &e82573_nvm_ops,
|
||||
.nvm_ops = &e82571_nvm_ops,
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user