diff options
Diffstat (limited to 'drivers/net/ethernet/stmicro/stmmac/stmmac_ethtool.c')
| -rw-r--r-- | drivers/net/ethernet/stmicro/stmmac/stmmac_ethtool.c | 3 | 
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/net/ethernet/stmicro/stmmac/stmmac_ethtool.c b/drivers/net/ethernet/stmicro/stmmac/stmmac_ethtool.c index 1372ce210b5..d1ac39c1b05 100644 --- a/drivers/net/ethernet/stmicro/stmmac/stmmac_ethtool.c +++ b/drivers/net/ethernet/stmicro/stmmac/stmmac_ethtool.c @@ -210,8 +210,7 @@ static void stmmac_ethtool_getdrvinfo(struct net_device *dev,  		strlcpy(info->driver, MAC100_ETHTOOL_NAME,  			sizeof(info->driver)); -	strcpy(info->version, DRV_MODULE_VERSION); -	info->fw_version[0] = '\0'; +	strlcpy(info->version, DRV_MODULE_VERSION, sizeof(info->version));  }  static int stmmac_ethtool_getsettings(struct net_device *dev,  |