diff options
author | Stefan Assmann <sassmann@redhat.com> | 2010-07-26 23:24:50 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-07-27 13:18:14 -0700 |
commit | 2c6952dfdda2f266f2f501792b8d6413caf25f7a (patch) | |
tree | ae6f4e19306b7909a859ee3a218a6111f89e3e99 /drivers/net/ixgbevf | |
parent | 56075a98dfb887981ee0e4b6a768cd53f2514f4c (diff) |
igbvf, ixgbevf: use dev_hw_addr_random
Both igbvf and ixgbevf should set addr_assign_type to NET_ADDR_RANDOM
so udev creates persistent net rules by matching the device path.
Do this by using the dev_hw_addr_random helper function.
Signed-off-by: Stefan Assmann <sassmann@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ixgbevf')
-rw-r--r-- | drivers/net/ixgbevf/ixgbevf_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ixgbevf/ixgbevf_main.c b/drivers/net/ixgbevf/ixgbevf_main.c index af491352b5e0..4867440ecfa8 100644 --- a/drivers/net/ixgbevf/ixgbevf_main.c +++ b/drivers/net/ixgbevf/ixgbevf_main.c @@ -2229,7 +2229,7 @@ static int __devinit ixgbevf_sw_init(struct ixgbevf_adapter *adapter) if (err) { dev_info(&pdev->dev, "PF still in reset state, assigning new address\n"); - random_ether_addr(hw->mac.addr); + dev_hw_addr_random(adapter->netdev, hw->mac.addr); } else { err = hw->mac.ops.init_hw(hw); if (err) { |