mirror of
https://github.com/ipxe/ipxe
synced 2025-12-20 03:55:46 +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:
@@ -813,7 +813,7 @@ static int rtl818x_probe(struct pci_device *pdev,
|
||||
free(hwinfo);
|
||||
|
||||
DBG("rtl818x: Realtek RTL818%s (RF chip %s) with address %s\n",
|
||||
chip_name, priv->rf->name, netdev_hwaddr(dev->netdev));
|
||||
chip_name, priv->rf->name, netdev_addr(dev->netdev));
|
||||
|
||||
return 0;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user