forked from Minki/linux
[PATCH] ne2k-pci: support ETHTOOL_GPERMADDR
Add support for ETHTOOL_GPERMADDR to ne2k-pci. Signed-off-by: John W. Linville <linville@tuxdriver.com> Signed-off-by: Jeff Garzik <jgarzik@pobox.com>
This commit is contained in:
parent
df859c519e
commit
78b345890a
@ -372,6 +372,7 @@ static int __devinit ne2k_pci_init_one (struct pci_dev *pdev,
|
|||||||
printk("%2.2X%s", SA_prom[i], i == 5 ? ".\n": ":");
|
printk("%2.2X%s", SA_prom[i], i == 5 ? ".\n": ":");
|
||||||
dev->dev_addr[i] = SA_prom[i];
|
dev->dev_addr[i] = SA_prom[i];
|
||||||
}
|
}
|
||||||
|
memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
@ -637,6 +638,7 @@ static struct ethtool_ops ne2k_pci_ethtool_ops = {
|
|||||||
.get_drvinfo = ne2k_pci_get_drvinfo,
|
.get_drvinfo = ne2k_pci_get_drvinfo,
|
||||||
.get_tx_csum = ethtool_op_get_tx_csum,
|
.get_tx_csum = ethtool_op_get_tx_csum,
|
||||||
.get_sg = ethtool_op_get_sg,
|
.get_sg = ethtool_op_get_sg,
|
||||||
|
.get_perm_addr = ethtool_op_get_perm_addr,
|
||||||
};
|
};
|
||||||
|
|
||||||
static void __devexit ne2k_pci_remove_one (struct pci_dev *pdev)
|
static void __devexit ne2k_pci_remove_one (struct pci_dev *pdev)
|
||||||
|
Loading…
Reference in New Issue
Block a user