summaryrefslogtreecommitdiffstats
path: root/drivers/net/ethernet/faraday
diff options
context:
space:
mode:
authorGavin Shan <gwshan@linux.vnet.ibm.com>2016-07-21 11:42:54 +1000
committerDavid S. Miller <davem@davemloft.net>2016-07-20 21:05:18 -0700
commite6c044f5f68e0071e94829c62dbb2549e44a09e9 (patch)
tree335250940c09a3ac700bae1e9b20da68c44e388c /drivers/net/ethernet/faraday
parentc0d661ca3701f38d9313ca3954e3741ad92e3aaa (diff)
downloadlinux-e6c044f5f68e0071e94829c62dbb2549e44a09e9.tar.gz
linux-e6c044f5f68e0071e94829c62dbb2549e44a09e9.tar.xz
net/faraday: Disallow using reversed MAC address from hardware
The initial MAC address is retrieved from hardware if it's not provided by device-tree. The reserved MAC address from hardware will be used if non-reserved MAC address is invalid. It will cause mismatched MAC address seen by hardware and software. This disallows using the reserved hardware MAC address to avoid the mismatched MAC address seen by hardware and software. Fixes: 113ce107afe9 ("net/faraday: Read MAC address from chip") Suggested-by: David Laight <David.Laight@ACULAB.COM> Suggested-by: Benjamin Herrenschmidt <benh@kernel.crashing.org> Signed-off-by: Gavin Shan <gwshan@linux.vnet.ibm.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/faraday')
-rw-r--r--drivers/net/ethernet/faraday/ftgmac100.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/drivers/net/ethernet/faraday/ftgmac100.c b/drivers/net/ethernet/faraday/ftgmac100.c
index 2d4c7eab8b36..36361f8bf894 100644
--- a/drivers/net/ethernet/faraday/ftgmac100.c
+++ b/drivers/net/ethernet/faraday/ftgmac100.c
@@ -163,15 +163,6 @@ static void ftgmac100_setup_mac(struct ftgmac100 *priv)
mac[4] = (l >> 8) & 0xff;
mac[5] = l & 0xff;
- if (!is_valid_ether_addr(mac)) {
- mac[5] = (m >> 8) & 0xff;
- mac[4] = m & 0xff;
- mac[3] = (l >> 24) & 0xff;
- mac[2] = (l >> 16) & 0xff;
- mac[1] = (l >> 8) & 0xff;
- mac[0] = l & 0xff;
- }
-
if (is_valid_ether_addr(mac)) {
ether_addr_copy(priv->netdev->dev_addr, mac);
dev_info(priv->dev, "Read MAC address %pM from chip\n", mac);