mirror of
https://github.com/torvalds/linux.git
synced 2026-05-23 22:52:19 +02:00
smc9194: use eth_hw_addr_set()
dev_addr is set from IO reads, and broken from a u16 value. Fixes build on Alpha. Signed-off-by: Jakub Kicinski <kuba@kernel.org> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
f95f8e890a
commit
80db345e7d
|
|
@ -856,6 +856,7 @@ static int __init smc_probe(struct net_device *dev, int ioaddr)
|
|||
word configuration_register;
|
||||
word memory_info_register;
|
||||
word memory_cfg_register;
|
||||
u8 addr[ETH_ALEN];
|
||||
|
||||
/* Grab the region so that no one else tries to probe our ioports. */
|
||||
if (!request_region(ioaddr, SMC_IO_EXTENT, DRV_NAME))
|
||||
|
|
@ -924,9 +925,10 @@ static int __init smc_probe(struct net_device *dev, int ioaddr)
|
|||
word address;
|
||||
|
||||
address = inw( ioaddr + ADDR0 + i );
|
||||
dev->dev_addr[ i + 1] = address >> 8;
|
||||
dev->dev_addr[ i ] = address & 0xFF;
|
||||
addr[i + 1] = address >> 8;
|
||||
addr[i] = address & 0xFF;
|
||||
}
|
||||
eth_hw_addr_set(dev, addr);
|
||||
|
||||
/* get the memory information */
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user