RDMA/nes: Fill in firmware version for ethtool
Fill in firmware version for ethtool_drvinfo. Signed-off-by: Sweta Bhatt <sweta.bhatt@einfochips.com> Signed-off-by: Chien Tung <ctung@neteffect.com> Signed-off-by: Roland Dreier <rolandd@cisco.com>
This commit is contained in:
committed by
Roland Dreier
parent
27ffed603f
commit
0c93ae355e
@@ -1228,10 +1228,12 @@ static void nes_netdev_get_drvinfo(struct net_device *netdev,
|
|||||||
struct ethtool_drvinfo *drvinfo)
|
struct ethtool_drvinfo *drvinfo)
|
||||||
{
|
{
|
||||||
struct nes_vnic *nesvnic = netdev_priv(netdev);
|
struct nes_vnic *nesvnic = netdev_priv(netdev);
|
||||||
|
struct nes_adapter *nesadapter = nesvnic->nesdev->nesadapter;
|
||||||
|
|
||||||
strcpy(drvinfo->driver, DRV_NAME);
|
strcpy(drvinfo->driver, DRV_NAME);
|
||||||
strcpy(drvinfo->bus_info, pci_name(nesvnic->nesdev->pcidev));
|
strcpy(drvinfo->bus_info, pci_name(nesvnic->nesdev->pcidev));
|
||||||
strcpy(drvinfo->fw_version, "TBD");
|
sprintf(drvinfo->fw_version, "%u.%u", nesadapter->firmware_version>>16,
|
||||||
|
nesadapter->firmware_version & 0x000000ff);
|
||||||
strcpy(drvinfo->version, DRV_VERSION);
|
strcpy(drvinfo->version, DRV_VERSION);
|
||||||
drvinfo->n_stats = nes_netdev_get_stats_count(netdev);
|
drvinfo->n_stats = nes_netdev_get_stats_count(netdev);
|
||||||
drvinfo->testinfo_len = 0;
|
drvinfo->testinfo_len = 0;
|
||||||
|
Reference in New Issue
Block a user