diff options
author | Felix Fietkau <nbd@openwrt.org> | 2010-03-10 01:09:12 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2010-03-10 01:09:12 +0000 |
commit | 56f94c0d2a90cca7fd509a8432830db9d23fc713 (patch) | |
tree | c6c45fe6fa60458959b9b068f1a65782324bff9d /package/mac80211/patches/403-ath9k-fix-invalid-mac-address-handling.patch | |
parent | 527accf9208ce0ef5e4ef7d82aa2057d009afce7 (diff) | |
download | upstream-56f94c0d2a90cca7fd509a8432830db9d23fc713.tar.gz upstream-56f94c0d2a90cca7fd509a8432830db9d23fc713.tar.bz2 upstream-56f94c0d2a90cca7fd509a8432830db9d23fc713.zip |
mac80211: fix compile for 2.6.33 (thx, acoul)
SVN-Revision: 20113
Diffstat (limited to 'package/mac80211/patches/403-ath9k-fix-invalid-mac-address-handling.patch')
-rw-r--r-- | package/mac80211/patches/403-ath9k-fix-invalid-mac-address-handling.patch | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/package/mac80211/patches/403-ath9k-fix-invalid-mac-address-handling.patch b/package/mac80211/patches/403-ath9k-fix-invalid-mac-address-handling.patch index bb3796ab01..e42be951c2 100644 --- a/package/mac80211/patches/403-ath9k-fix-invalid-mac-address-handling.patch +++ b/package/mac80211/patches/403-ath9k-fix-invalid-mac-address-handling.patch @@ -8,23 +8,21 @@ #include <asm/unaligned.h> #include "hw.h" -@@ -441,8 +442,18 @@ static int ath9k_hw_init_macaddr(struct +@@ -441,8 +442,16 @@ static int ath9k_hw_init_macaddr(struct common->macaddr[2 * i] = eeval >> 8; common->macaddr[2 * i + 1] = eeval & 0xff; } - if (sum == 0 || sum == 0xffff * 3) - return -EADDRNOTAVAIL; + if (!is_valid_ether_addr(common->macaddr)) { -+ DECLARE_MAC_BUF(macbuf); -+ + ath_print(common, ATH_DBG_EEPROM, -+ "eeprom contains invalid mac address: %s\n", -+ print_mac(macbuf, common->macaddr)); ++ "eeprom contains invalid mac address: %pM\n", ++ common->macaddr); + + random_ether_addr(common->macaddr); + ath_print(common, ATH_DBG_EEPROM, -+ "random mac address will be used: %s\n", -+ print_mac(macbuf, common->macaddr)); ++ "random mac address will be used: %pM\n", ++ common->macaddr); + } return 0; |