diff options
Diffstat (limited to 'drivers/net/cris/eth_v10.c')
-rw-r--r-- | drivers/net/cris/eth_v10.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/net/cris/eth_v10.c b/drivers/net/cris/eth_v10.c index 021d69c5d9bc..29e272cc7a98 100644 --- a/drivers/net/cris/eth_v10.c +++ b/drivers/net/cris/eth_v10.c | |||
@@ -1448,10 +1448,10 @@ static int e100_set_settings(struct net_device *dev, | |||
1448 | static void e100_get_drvinfo(struct net_device *dev, | 1448 | static void e100_get_drvinfo(struct net_device *dev, |
1449 | struct ethtool_drvinfo *info) | 1449 | struct ethtool_drvinfo *info) |
1450 | { | 1450 | { |
1451 | strncpy(info->driver, "ETRAX 100LX", sizeof(info->driver) - 1); | 1451 | strlcpy(info->driver, "ETRAX 100LX", sizeof(info->driver)); |
1452 | strncpy(info->version, "$Revision: 1.31 $", sizeof(info->version) - 1); | 1452 | strlcpy(info->version, "$Revision: 1.31 $", sizeof(info->version)); |
1453 | strncpy(info->fw_version, "N/A", sizeof(info->fw_version) - 1); | 1453 | strlcpy(info->fw_version, "N/A", sizeof(info->fw_version)); |
1454 | strncpy(info->bus_info, "N/A", sizeof(info->bus_info) - 1); | 1454 | strlcpy(info->bus_info, "N/A", sizeof(info->bus_info)); |
1455 | } | 1455 | } |
1456 | 1456 | ||
1457 | static int e100_nway_reset(struct net_device *dev) | 1457 | static int e100_nway_reset(struct net_device *dev) |