diff options
author | Alexander Duyck <alexander.h.duyck@intel.com> | 2009-02-06 18:17:47 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-02-07 05:43:06 -0500 |
commit | 312c75aee7606e886d91c810bc491c9f40ff5837 (patch) | |
tree | b8ab05276b686849a5916f93a63d8e44ce800f1e /drivers/net/igb/e1000_hw.h | |
parent | a8d2a0c27f84bdbf54b7e1c1a52ef7b8b7196dbc (diff) |
igb: rename nvm ops
All of the nvm ops have the tag _nvm added to the end which is redundant
since all of the calls to the ops have to go through the nvm ops struct
anyway.
Signed-off-by: Alexander Duyck <alexander.h.duyck@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/igb/e1000_hw.h')
-rw-r--r-- | drivers/net/igb/e1000_hw.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/net/igb/e1000_hw.h b/drivers/net/igb/e1000_hw.h index 5acb8497cd64..acb42a21e95c 100644 --- a/drivers/net/igb/e1000_hw.h +++ b/drivers/net/igb/e1000_hw.h | |||
@@ -437,10 +437,10 @@ struct e1000_phy_operations { | |||
437 | }; | 437 | }; |
438 | 438 | ||
439 | struct e1000_nvm_operations { | 439 | struct e1000_nvm_operations { |
440 | s32 (*acquire_nvm)(struct e1000_hw *); | 440 | s32 (*acquire)(struct e1000_hw *); |
441 | s32 (*read_nvm)(struct e1000_hw *, u16, u16, u16 *); | 441 | s32 (*read)(struct e1000_hw *, u16, u16, u16 *); |
442 | void (*release_nvm)(struct e1000_hw *); | 442 | void (*release)(struct e1000_hw *); |
443 | s32 (*write_nvm)(struct e1000_hw *, u16, u16, u16 *); | 443 | s32 (*write)(struct e1000_hw *, u16, u16, u16 *); |
444 | }; | 444 | }; |
445 | 445 | ||
446 | struct e1000_info { | 446 | struct e1000_info { |