projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
[package] pjsip: fix linking failure w/ ARM eabi
[openwrt.git]
/
package
/
mac80211
/
patches
/
403-ath9k-fix-invalid-mac-address-handling.patch
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
8098b22
..
cf3f96b
100644
(file)
--- a/
package/mac80211/patches/403-ath9k-fix-invalid-mac-address-handling.patch
+++ b/
package/mac80211/patches/403-ath9k-fix-invalid-mac-address-handling.patch
@@
-15,12
+15,12
@@
- if (sum == 0 || sum == 0xffff * 3)
- return -EADDRNOTAVAIL;
+ if (!is_valid_ether_addr(common->macaddr)) {
- if (sum == 0 || sum == 0xffff * 3)
- return -EADDRNOTAVAIL;
+ if (!is_valid_ether_addr(common->macaddr)) {
-+ ath_
print(common, ATH_DBG_EEPROM
,
++ ath_
err(common
,
+ "eeprom contains invalid mac address: %pM\n",
+ common->macaddr);
+
+ random_ether_addr(common->macaddr);
+ "eeprom contains invalid mac address: %pM\n",
+ common->macaddr);
+
+ random_ether_addr(common->macaddr);
-+ ath_
print(common, ATH_DBG_EEPROM
,
++ ath_
err(common
,
+ "random mac address will be used: %pM\n",
+ common->macaddr);
+ }
+ "random mac address will be used: %pM\n",
+ common->macaddr);
+ }
This page took
0.027133 seconds
and
4
git commands to generate.