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