diff options
Diffstat (limited to 'drivers/net/ethernet/smsc/smc911x.c')
-rw-r--r-- | drivers/net/ethernet/smsc/smc911x.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/drivers/net/ethernet/smsc/smc911x.c b/drivers/net/ethernet/smsc/smc911x.c index 59a6f88da867..1538d5442bab 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) | |||
1522 | static void | 1522 | static void |
1523 | smc911x_ethtool_getdrvinfo(struct net_device *dev, struct ethtool_drvinfo *info) | 1523 | smc911x_ethtool_getdrvinfo(struct net_device *dev, struct ethtool_drvinfo *info) |
1524 | { | 1524 | { |
1525 | strncpy(info->driver, CARDNAME, sizeof(info->driver)); | 1525 | strlcpy(info->driver, CARDNAME, sizeof(info->driver)); |
1526 | strncpy(info->version, version, sizeof(info->version)); | 1526 | strlcpy(info->version, version, sizeof(info->version)); |
1527 | strncpy(info->bus_info, dev_name(dev->dev.parent), sizeof(info->bus_info)); | 1527 | strlcpy(info->bus_info, dev_name(dev->dev.parent), |
1528 | sizeof(info->bus_info)); | ||
1528 | } | 1529 | } |
1529 | 1530 | ||
1530 | static int smc911x_ethtool_nwayreset(struct net_device *dev) | 1531 | static int smc911x_ethtool_nwayreset(struct net_device *dev) |