aboutsummaryrefslogtreecommitdiff
path: root/src/net/80211
diff options
context:
space:
mode:
authorMichael Brown <mcb30@etherboot.org>2009-08-11 20:19:53 +0100
committerMichael Brown <mcb30@etherboot.org>2009-08-12 00:19:14 +0100
commit37a0aab4ff2c86f4d109d4cd479535be97d07a94 (patch)
tree5a2f06a22cf2c647b36d254fc1699072c3c88392 /src/net/80211
parentb3db99a38d8822f29eae6f67ee6034c57284d06f (diff)
downloadipxe-37a0aab4ff2c86f4d109d4cd479535be97d07a94.zip
ipxe-37a0aab4ff2c86f4d109d4cd479535be97d07a94.tar.gz
ipxe-37a0aab4ff2c86f4d109d4cd479535be97d07a94.tar.bz2
[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/net/80211')
-rw-r--r--src/net/80211/net80211.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/80211/net80211.c b/src/net/80211/net80211.c
index c46870c..f361285 100644
--- a/src/net/80211/net80211.c
+++ b/src/net/80211/net80211.c
@@ -792,7 +792,7 @@ int net80211_register ( struct net80211_device *dev,
return -ENOMEM;
memcpy ( dev->hw, hw, sizeof ( *hw ) );
- memcpy ( dev->netdev->ll_addr, hw->hwaddr, ETH_ALEN );
+ memcpy ( dev->netdev->hw_addr, hw->hwaddr, ETH_ALEN );
/* Set some sensible channel defaults for driver's open() function */
memcpy ( dev->channels, dev->hw->channels,