Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 134345
b: refs/heads/master
c: 8675737
h: refs/heads/master
i:
  134343: 92d3af7
v: v3
  • Loading branch information
Alexander Duyck authored and David S. Miller committed Feb 7, 2009
1 parent a2785ba commit c854452
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: fa4dfae0ce703976578015902025137d5e268501
refs/heads/master: 8675737a9c1bf6c295461efc64898359398e1c82
1 change: 0 additions & 1 deletion trunk/drivers/net/igb/e1000_hw.h
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,6 @@ struct e1000_mac_info {
bool asf_firmware_present;
bool autoneg;
bool autoneg_failed;
bool disable_av;
bool disable_hw_init_bits;
bool get_link_status;
bool ifs_params_forced;
Expand Down
3 changes: 2 additions & 1 deletion trunk/drivers/net/igb/e1000_mac.c
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,8 @@ void igb_rar_set(struct e1000_hw *hw, u8 *addr, u32 index)

rar_high = ((u32) addr[4] | ((u32) addr[5] << 8));

if (!hw->mac.disable_av)
/* If MAC address zero, no need to set the AV bit */
if (rar_low || rar_high)
rar_high |= E1000_RAH_AV;

wr32(E1000_RAL(index), rar_low);
Expand Down

0 comments on commit c854452

Please sign in to comment.