X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=blobdiff_plain;f=package%2Fmac80211%2Fpatches%2F403-ath9k-fix-invalid-mac-address-handling.patch;h=cf3f96bb171abe7b2b039752665befe482d1c1f6;hp=34239992618e66fecaaf69a05a94fa8de89a7954;hb=ecc8cf8ac3b0cd42c02a7326f39772d68f3718d3;hpb=7cc69497d2809eb55e95f442fe7f7c26d4f6bc6f 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 3423999261..cf3f96bb17 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 @@ -1,25 +1,29 @@ ---- a/drivers/net/wireless/ath9k/hw.c -+++ b/drivers/net/wireless/ath9k/hw.c -@@ -493,11 +493,18 @@ static int ath9k_hw_init_macaddr(struct - ah->macaddr[2 * i] = eeval >> 8; - ah->macaddr[2 * i + 1] = eeval & 0xff; +--- a/drivers/net/wireless/ath/ath9k/hw.c ++++ b/drivers/net/wireless/ath/ath9k/hw.c +@@ -16,6 +16,7 @@ + + #include + #include ++#include + #include + + #include "hw.h" +@@ -431,8 +432,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) { -+ -+ if (!is_valid_ether_addr(ah->macaddr)) { -+ DECLARE_MAC_BUF(macbuf); -+ -+ DPRINTF(ah->ah_sc, ATH_DBG_EEPROM, -+ "eeprom contains invalid mac address: %s\n", -+ print_mac(macbuf, ah->macaddr)); -+ -+ random_ether_addr(ah->macaddr); - DPRINTF(ah->ah_sc, ATH_DBG_EEPROM, -- "mac address read failed: %pM\n", -- ah->macaddr); +- if (sum == 0 || sum == 0xffff * 3) - return -EADDRNOTAVAIL; -+ "random mac address will be used: %s\n", -+ print_mac(macbuf, ah->macaddr)); - } ++ if (!is_valid_ether_addr(common->macaddr)) { ++ ath_err(common, ++ "eeprom contains invalid mac address: %pM\n", ++ common->macaddr); ++ ++ random_ether_addr(common->macaddr); ++ ath_err(common, ++ "random mac address will be used: %pM\n", ++ common->macaddr); ++ } return 0; + }