Commit 23ea630f authored by Max Filippov's avatar Max Filippov Committed by Jakub Kicinski

net: natsemi: fix hw address initialization for jazz and xtensa

Use eth_hw_addr_set function instead of writing the address directly to
net_device::dev_addr.

Fixes: adeef3e3 ("net: constify netdev->dev_addr")
Signed-off-by: default avatarMax Filippov <jcmvbkbc@gmail.com>
Acked-by: Randy Dunlap <rdunlap@infradead.org> # build-tested
Link: https://lore.kernel.org/r/20211130143600.31970-1-jcmvbkbc@gmail.comSigned-off-by: default avatarJakub Kicinski <kuba@kernel.org>
parent 5cfe53cf
...@@ -114,6 +114,7 @@ static int sonic_probe1(struct net_device *dev) ...@@ -114,6 +114,7 @@ static int sonic_probe1(struct net_device *dev)
struct sonic_local *lp = netdev_priv(dev); struct sonic_local *lp = netdev_priv(dev);
int err = -ENODEV; int err = -ENODEV;
int i; int i;
unsigned char addr[ETH_ALEN];
if (!request_mem_region(dev->base_addr, SONIC_MEM_SIZE, jazz_sonic_string)) if (!request_mem_region(dev->base_addr, SONIC_MEM_SIZE, jazz_sonic_string))
return -EBUSY; return -EBUSY;
...@@ -143,9 +144,10 @@ static int sonic_probe1(struct net_device *dev) ...@@ -143,9 +144,10 @@ static int sonic_probe1(struct net_device *dev)
SONIC_WRITE(SONIC_CEP,0); SONIC_WRITE(SONIC_CEP,0);
for (i=0; i<3; i++) { for (i=0; i<3; i++) {
val = SONIC_READ(SONIC_CAP0-i); val = SONIC_READ(SONIC_CAP0-i);
dev->dev_addr[i*2] = val; addr[i*2] = val;
dev->dev_addr[i*2+1] = val >> 8; addr[i*2+1] = val >> 8;
} }
eth_hw_addr_set(dev, addr);
lp->dma_bitmode = SONIC_BITMODE32; lp->dma_bitmode = SONIC_BITMODE32;
......
...@@ -127,6 +127,7 @@ static int __init sonic_probe1(struct net_device *dev) ...@@ -127,6 +127,7 @@ static int __init sonic_probe1(struct net_device *dev)
unsigned int base_addr = dev->base_addr; unsigned int base_addr = dev->base_addr;
int i; int i;
int err = 0; int err = 0;
unsigned char addr[ETH_ALEN];
if (!request_mem_region(base_addr, 0x100, xtsonic_string)) if (!request_mem_region(base_addr, 0x100, xtsonic_string))
return -EBUSY; return -EBUSY;
...@@ -163,9 +164,10 @@ static int __init sonic_probe1(struct net_device *dev) ...@@ -163,9 +164,10 @@ static int __init sonic_probe1(struct net_device *dev)
for (i=0; i<3; i++) { for (i=0; i<3; i++) {
unsigned int val = SONIC_READ(SONIC_CAP0-i); unsigned int val = SONIC_READ(SONIC_CAP0-i);
dev->dev_addr[i*2] = val; addr[i*2] = val;
dev->dev_addr[i*2+1] = val >> 8; addr[i*2+1] = val >> 8;
} }
eth_hw_addr_set(dev, addr);
lp->dma_bitmode = SONIC_BITMODE32; lp->dma_bitmode = SONIC_BITMODE32;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment