projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7f99ae6
)
e1000e: alternate MAC address update
author
Bruce Allan
<
[email protected]
>
Fri, 29 Jul 2011 05:53:07 +0000
(
05:53
+0000)
committer
Jeff Kirsher
<
[email protected]
>
Thu, 11 Aug 2011 22:21:05 +0000
(15:21 -0700)
If word 0x37 in the EEPROM is 0xFFFF _or_ 0x0000, then there is no
alternate MAC address in the EEPROM.
Signed-off-by: Bruce Allan <
[email protected]
>
Tested-by: Aaron Brown <
[email protected]
>
Signed-off-by: Jeff Kirsher <
[email protected]
>
drivers/net/e1000e/lib.c
patch
|
blob
|
history
diff --git
a/drivers/net/e1000e/lib.c
b/drivers/net/e1000e/lib.c
index 58af091c8c3ac2aa326f39c8697006200bf3a992..0893ab107adf320a5b07293fb64596e6e2794315 100644
(file)
--- a/
drivers/net/e1000e/lib.c
+++ b/
drivers/net/e1000e/lib.c
@@
-201,10
+201,10
@@
s32 e1000_check_alt_mac_addr_generic(struct e1000_hw *hw)
goto out;
}
- if (nvm_alt_mac_addr_offset == 0xFFFF) {
+ if ((nvm_alt_mac_addr_offset == 0xFFFF) ||
+ (nvm_alt_mac_addr_offset == 0x0000))
/* There is no Alternate MAC Address */
goto out;
- }
if (hw->bus.func == E1000_FUNC_1)
nvm_alt_mac_addr_offset += E1000_ALT_MAC_ADDRESS_OFFSET_LAN1;