[PATCH] e100: support ETHTOOL_GPERMADDR
Add support for ETHTOOL_GPERMADDR to e100. Signed-off-by: John W. Linville <linville@tuxdriver.com> Signed-off-by: Jeff Garzik <jgarzik@pobox.com>
This commit is contained in:
parent
9beb0ac17b
commit
a92dd9233a
1 changed files with 3 additions and 1 deletions
|
@ -2391,6 +2391,7 @@ static struct ethtool_ops e100_ethtool_ops = {
|
||||||
.phys_id = e100_phys_id,
|
.phys_id = e100_phys_id,
|
||||||
.get_stats_count = e100_get_stats_count,
|
.get_stats_count = e100_get_stats_count,
|
||||||
.get_ethtool_stats = e100_get_ethtool_stats,
|
.get_ethtool_stats = e100_get_ethtool_stats,
|
||||||
|
.get_perm_addr = ethtool_op_get_perm_addr,
|
||||||
};
|
};
|
||||||
|
|
||||||
static int e100_do_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd)
|
static int e100_do_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd)
|
||||||
|
@ -2541,7 +2542,8 @@ static int __devinit e100_probe(struct pci_dev *pdev,
|
||||||
e100_phy_init(nic);
|
e100_phy_init(nic);
|
||||||
|
|
||||||
memcpy(netdev->dev_addr, nic->eeprom, ETH_ALEN);
|
memcpy(netdev->dev_addr, nic->eeprom, ETH_ALEN);
|
||||||
if(!is_valid_ether_addr(netdev->dev_addr)) {
|
memcpy(netdev->perm_addr, nic->eeprom, ETH_ALEN);
|
||||||
|
if(!is_valid_ether_addr(netdev->perm_addr)) {
|
||||||
DPRINTK(PROBE, ERR, "Invalid MAC address from "
|
DPRINTK(PROBE, ERR, "Invalid MAC address from "
|
||||||
"EEPROM, aborting.\n");
|
"EEPROM, aborting.\n");
|
||||||
err = -EAGAIN;
|
err = -EAGAIN;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue