From 37a0aab4ff2c86f4d109d4cd479535be97d07a94 Mon Sep 17 00:00:00 2001 From: Michael Brown Date: Tue, 11 Aug 2009 20:19:53 +0100 Subject: [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(). --- src/drivers/net/mtnic.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/drivers/net/mtnic.c') diff --git a/src/drivers/net/mtnic.c b/src/drivers/net/mtnic.c index 7fe4b96f0..d7ee8d2b0 100644 --- a/src/drivers/net/mtnic.c +++ b/src/drivers/net/mtnic.c @@ -1814,7 +1814,7 @@ mtnic_probe(struct pci_device *pci, /* Program the MAC address */ mac = priv->mtnic->fw.mac[port_index]; for (mac_idx = 0; mac_idx < MAC_ADDRESS_SIZE; ++mac_idx) { - mtnic->netdev[port_index]->ll_addr[MAC_ADDRESS_SIZE - mac_idx - 1] = mac & 0xFF; + mtnic->netdev[port_index]->hw_addr[MAC_ADDRESS_SIZE - mac_idx - 1] = mac & 0xFF; mac = mac >> 8; } -- cgit v1.2.3-55-g7522