2009-05-01 13:43:12 +00:00
|
|
|
--- a/drivers/net/wireless/ath/ath9k/hw.c
|
|
|
|
+++ b/drivers/net/wireless/ath/ath9k/hw.c
|
2011-11-18 11:27:19 +00:00
|
|
|
@@ -17,6 +17,7 @@
|
2010-04-14 00:09:26 +00:00
|
|
|
#include <linux/io.h>
|
|
|
|
#include <linux/slab.h>
|
2011-11-18 11:27:19 +00:00
|
|
|
#include <linux/module.h>
|
2009-10-11 00:36:23 +00:00
|
|
|
+#include <linux/etherdevice.h>
|
|
|
|
#include <asm/unaligned.h>
|
|
|
|
|
|
|
|
#include "hw.h"
|
2012-12-07 16:46:04 +00:00
|
|
|
@@ -524,8 +525,16 @@ static int ath9k_hw_init_macaddr(struct
|
2009-10-11 00:36:23 +00:00
|
|
|
common->macaddr[2 * i] = eeval >> 8;
|
|
|
|
common->macaddr[2 * i + 1] = eeval & 0xff;
|
2009-02-01 16:15:45 +00:00
|
|
|
}
|
2009-05-01 13:43:12 +00:00
|
|
|
- if (sum == 0 || sum == 0xffff * 3)
|
|
|
|
- return -EADDRNOTAVAIL;
|
2009-10-11 00:36:23 +00:00
|
|
|
+ if (!is_valid_ether_addr(common->macaddr)) {
|
2010-12-11 01:45:12 +00:00
|
|
|
+ ath_err(common,
|
2010-03-10 01:09:12 +00:00
|
|
|
+ "eeprom contains invalid mac address: %pM\n",
|
|
|
|
+ common->macaddr);
|
2009-02-01 16:15:45 +00:00
|
|
|
+
|
2009-10-11 00:36:23 +00:00
|
|
|
+ random_ether_addr(common->macaddr);
|
2010-12-11 01:45:12 +00:00
|
|
|
+ ath_err(common,
|
2010-03-10 01:09:12 +00:00
|
|
|
+ "random mac address will be used: %pM\n",
|
|
|
|
+ common->macaddr);
|
2009-05-01 13:43:12 +00:00
|
|
|
+ }
|
2009-02-01 16:15:45 +00:00
|
|
|
|
|
|
|
return 0;
|
2009-05-01 13:43:12 +00:00
|
|
|
}
|