mirror of
https://github.com/torvalds/linux.git
synced 2024-12-14 07:02:23 +00:00
net/alteon: Properly report FW version
The acenic driver assigns FW version in driver version field, as part of cleanup driver version, set FW version properly. Signed-off-by: Leon Romanovsky <leonro@mellanox.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
2b7ef81c04
commit
3b2c8fc604
@ -2699,9 +2699,8 @@ static void ace_get_drvinfo(struct net_device *dev,
|
||||
struct ace_private *ap = netdev_priv(dev);
|
||||
|
||||
strlcpy(info->driver, "acenic", sizeof(info->driver));
|
||||
snprintf(info->version, sizeof(info->version), "%i.%i.%i",
|
||||
ap->firmware_major, ap->firmware_minor,
|
||||
ap->firmware_fix);
|
||||
snprintf(info->fw_version, sizeof(info->version), "%i.%i.%i",
|
||||
ap->firmware_major, ap->firmware_minor, ap->firmware_fix);
|
||||
|
||||
if (ap->pdev)
|
||||
strlcpy(info->bus_info, pci_name(ap->pdev),
|
||||
|
Loading…
Reference in New Issue
Block a user