diff options
Diffstat (limited to 'drivers/net/ethernet/smsc/smc911x.c')
| -rw-r--r-- | drivers/net/ethernet/smsc/smc911x.c | 9 | 
1 files changed, 5 insertions, 4 deletions
diff --git a/drivers/net/ethernet/smsc/smc911x.c b/drivers/net/ethernet/smsc/smc911x.c index 59a6f88da86..9dd842dbb85 100644 --- a/drivers/net/ethernet/smsc/smc911x.c +++ b/drivers/net/ethernet/smsc/smc911x.c @@ -1522,9 +1522,10 @@ smc911x_ethtool_setsettings(struct net_device *dev, struct ethtool_cmd *cmd)  static void  smc911x_ethtool_getdrvinfo(struct net_device *dev, struct ethtool_drvinfo *info)  { -	strncpy(info->driver, CARDNAME, sizeof(info->driver)); -	strncpy(info->version, version, sizeof(info->version)); -	strncpy(info->bus_info, dev_name(dev->dev.parent), sizeof(info->bus_info)); +	strlcpy(info->driver, CARDNAME, sizeof(info->driver)); +	strlcpy(info->version, version, sizeof(info->version)); +	strlcpy(info->bus_info, dev_name(dev->dev.parent), +		sizeof(info->bus_info));  }  static int smc911x_ethtool_nwayreset(struct net_device *dev) @@ -2035,7 +2036,7 @@ static int smc911x_drv_probe(struct platform_device *pdev)  	struct net_device *ndev;  	struct resource *res;  	struct smc911x_local *lp; -	unsigned int *addr; +	void __iomem *addr;  	int ret;  	DBG(SMC_DEBUG_FUNC, "--> %s\n",  __func__);  |