mirror of https://gitee.com/openkylin/linux.git
[PATCH] 3c59x: support ETHTOOL_GPERMADDR
Add support for ETHTOOL_GPERMADDR to 3c59x. Signed-off-by: John W. Linville <linville@tuxdriver.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
46e5e4a897
commit
bb531fc071
|
@ -1341,6 +1341,7 @@ static int __devinit vortex_probe1(struct device *gendev,
|
||||||
printk(" ***INVALID CHECKSUM %4.4x*** ", checksum);
|
printk(" ***INVALID CHECKSUM %4.4x*** ", checksum);
|
||||||
for (i = 0; i < 3; i++)
|
for (i = 0; i < 3; i++)
|
||||||
((u16 *)dev->dev_addr)[i] = htons(eeprom[i + 10]);
|
((u16 *)dev->dev_addr)[i] = htons(eeprom[i + 10]);
|
||||||
|
memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
|
||||||
if (print_info) {
|
if (print_info) {
|
||||||
for (i = 0; i < 6; i++)
|
for (i = 0; i < 6; i++)
|
||||||
printk("%c%2.2x", i ? ':' : ' ', dev->dev_addr[i]);
|
printk("%c%2.2x", i ? ':' : ' ', dev->dev_addr[i]);
|
||||||
|
@ -3059,6 +3060,7 @@ static struct ethtool_ops vortex_ethtool_ops = {
|
||||||
.set_settings = vortex_set_settings,
|
.set_settings = vortex_set_settings,
|
||||||
.get_link = vortex_get_link,
|
.get_link = vortex_get_link,
|
||||||
.nway_reset = vortex_nway_reset,
|
.nway_reset = vortex_nway_reset,
|
||||||
|
.get_perm_addr = ethtool_op_get_perm_addr,
|
||||||
};
|
};
|
||||||
|
|
||||||
#ifdef CONFIG_PCI
|
#ifdef CONFIG_PCI
|
||||||
|
|
Loading…
Reference in New Issue