Skip to content
Snippets Groups Projects
Commit 30d60a82 authored by John W. Linville's avatar John W. Linville Committed by Jeff Garzik
Browse files

[PATCH] sundance: support ETHTOOL_GPERMADDR


Add support for ETHTOOL_GPERMADDR to sundance.

Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
Signed-off-by: default avatarJeff Garzik <jgarzik@pobox.com>
parent 56230d53
No related branches found
No related tags found
No related merge requests found
...@@ -549,6 +549,7 @@ static int __devinit sundance_probe1 (struct pci_dev *pdev, ...@@ -549,6 +549,7 @@ static int __devinit sundance_probe1 (struct pci_dev *pdev,
for (i = 0; i < 3; i++) for (i = 0; i < 3; i++)
((u16 *)dev->dev_addr)[i] = ((u16 *)dev->dev_addr)[i] =
le16_to_cpu(eeprom_read(ioaddr, i + EEPROM_SA_OFFSET)); le16_to_cpu(eeprom_read(ioaddr, i + EEPROM_SA_OFFSET));
memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
dev->base_addr = (unsigned long)ioaddr; dev->base_addr = (unsigned long)ioaddr;
dev->irq = irq; dev->irq = irq;
...@@ -1619,6 +1620,7 @@ static struct ethtool_ops ethtool_ops = { ...@@ -1619,6 +1620,7 @@ static struct ethtool_ops ethtool_ops = {
.get_link = get_link, .get_link = get_link,
.get_msglevel = get_msglevel, .get_msglevel = get_msglevel,
.set_msglevel = set_msglevel, .set_msglevel = set_msglevel,
.get_perm_addr = ethtool_op_get_perm_addr,
}; };
static int netdev_ioctl(struct net_device *dev, struct ifreq *rq, int cmd) static int netdev_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment