mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-30 16:07:39 +00:00
net/broadcom: Don't set N/A FW if it is not available
There is no need to explicitly set N/A if FW not available. Signed-off-by: Leon Romanovsky <leonro@mellanox.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
e3c0a63510
commit
1611bec5fc
1 changed files with 0 additions and 2 deletions
|
@ -1303,7 +1303,6 @@ static void bcm_enet_get_drvinfo(struct net_device *netdev,
|
||||||
struct ethtool_drvinfo *drvinfo)
|
struct ethtool_drvinfo *drvinfo)
|
||||||
{
|
{
|
||||||
strlcpy(drvinfo->driver, bcm_enet_driver_name, sizeof(drvinfo->driver));
|
strlcpy(drvinfo->driver, bcm_enet_driver_name, sizeof(drvinfo->driver));
|
||||||
strlcpy(drvinfo->fw_version, "N/A", sizeof(drvinfo->fw_version));
|
|
||||||
strlcpy(drvinfo->bus_info, "bcm63xx", sizeof(drvinfo->bus_info));
|
strlcpy(drvinfo->bus_info, "bcm63xx", sizeof(drvinfo->bus_info));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2527,7 +2526,6 @@ static void bcm_enetsw_get_drvinfo(struct net_device *netdev,
|
||||||
struct ethtool_drvinfo *drvinfo)
|
struct ethtool_drvinfo *drvinfo)
|
||||||
{
|
{
|
||||||
strncpy(drvinfo->driver, bcm_enet_driver_name, sizeof(drvinfo->driver));
|
strncpy(drvinfo->driver, bcm_enet_driver_name, sizeof(drvinfo->driver));
|
||||||
strncpy(drvinfo->fw_version, "N/A", 32);
|
|
||||||
strncpy(drvinfo->bus_info, "bcm63xx", sizeof(drvinfo->bus_info));
|
strncpy(drvinfo->bus_info, "bcm63xx", sizeof(drvinfo->bus_info));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue