mirror of
https://github.com/ipxe/ipxe
synced 2025-12-28 18:42:53 +03:00
[netdevice] Separate out the concept of hardware and link-layer addresses
The hardware address is an intrinsic property of the hardware, while the link-layer address can be changed at runtime. This separation is exposed via APIs such as PXE and EFI, but is currently elided by gPXE. Expose the hardware and link-layer addresses as separate properties within a net device. Drivers should now fill in hw_addr, which will be used to initialise ll_addr at the time of calling register_netdev().
This commit is contained in:
@@ -928,7 +928,7 @@ static int a3c90x_probe(struct pci_device *pci,
|
||||
/* load eeprom contents to inf_3c90x->eeprom */
|
||||
a3c90x_internal_ReadEepromContents(inf_3c90x);
|
||||
|
||||
HWAddr = netdev->ll_addr;
|
||||
HWAddr = netdev->hw_addr;
|
||||
|
||||
/* Retrieve the Hardware address */
|
||||
HWAddr[0] = inf_3c90x->eeprom[eepromHwAddrOffset + 0] >> 8;
|
||||
|
||||
Reference in New Issue
Block a user