]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
[PATCH] sky2: add permanent address support.
authorStephen Hemminger <shemminger@osdl.org>
Wed, 28 Sep 2005 17:01:03 +0000 (10:01 -0700)
committerJeff Garzik <jgarzik@pobox.com>
Tue, 4 Oct 2005 11:59:43 +0000 (07:59 -0400)
Add permanent address support

Signed-off-by: Stephen Hemminger <shemminger@osdl.org>
Signed-off-by: Jeff Garzik <jgarzik@pobox.com>
drivers/net/sky2.c

index 57583fa86a9bf5730caf53258cb76261cf8391bc..06beb71cb3c895c92e34ac5a70c409128f7b3d39 100644 (file)
@@ -2698,6 +2698,7 @@ static struct ethtool_ops sky2_ethtool_ops = {
        .phys_id = sky2_phys_id,
        .get_stats_count = sky2_get_stats_count,
        .get_ethtool_stats = sky2_get_ethtool_stats,
+       .get_perm_addr  = ethtool_op_get_perm_addr,
 };
 
 /* Initialize network device */
@@ -2766,6 +2767,7 @@ static __devinit struct net_device *sky2_init_netdev(struct sky2_hw *hw,
 
        /* read the mac address */
        memcpy_fromio(dev->dev_addr, hw->regs + B2_MAC_1 + port * 8, ETH_ALEN);
+       memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
 
        /* device is off until link detection */
        netif_carrier_off(dev);