diff options
| author | Michael Brown | 2009-08-11 21:19:53 +0200 |
|---|---|---|
| committer | Michael Brown | 2009-08-12 01:19:14 +0200 |
| commit | 37a0aab4ff2c86f4d109d4cd479535be97d07a94 (patch) | |
| tree | 5a2f06a22cf2c647b36d254fc1699072c3c88392 /src/drivers/net/rtl8139.c | |
| parent | [doc] Expand scope of doxygen-generated documentation (diff) | |
| download | ipxe-37a0aab4ff2c86f4d109d4cd479535be97d07a94.tar.gz ipxe-37a0aab4ff2c86f4d109d4cd479535be97d07a94.tar.xz ipxe-37a0aab4ff2c86f4d109d4cd479535be97d07a94.zip | |
[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().
Diffstat (limited to 'src/drivers/net/rtl8139.c')
| -rw-r--r-- | src/drivers/net/rtl8139.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/drivers/net/rtl8139.c b/src/drivers/net/rtl8139.c index a4ee96924..754ce60b9 100644 --- a/src/drivers/net/rtl8139.c +++ b/src/drivers/net/rtl8139.c @@ -525,7 +525,7 @@ static int rtl_probe ( struct pci_device *pci, /* Reset the NIC, set up EEPROM access and read MAC address */ rtl_reset ( netdev ); rtl_init_eeprom ( netdev ); - nvs_read ( &rtl->eeprom.nvs, EE_MAC, netdev->ll_addr, ETH_ALEN ); + nvs_read ( &rtl->eeprom.nvs, EE_MAC, netdev->hw_addr, ETH_ALEN ); /* Mark as link up; we don't yet handle link state */ netdev_link_up ( netdev ); |
