diff options
Diffstat (limited to 'drivers/net/ethernet/i825xx/3c505.c')
-rw-r--r-- | drivers/net/ethernet/i825xx/3c505.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/drivers/net/ethernet/i825xx/3c505.c b/drivers/net/ethernet/i825xx/3c505.c index 6a5c21b82c51..6d000d678a58 100644 --- a/drivers/net/ethernet/i825xx/3c505.c +++ b/drivers/net/ethernet/i825xx/3c505.c | |||
@@ -1138,9 +1138,10 @@ static struct net_device_stats *elp_get_stats(struct net_device *dev) | |||
1138 | static void netdev_get_drvinfo(struct net_device *dev, | 1138 | static void netdev_get_drvinfo(struct net_device *dev, |
1139 | struct ethtool_drvinfo *info) | 1139 | struct ethtool_drvinfo *info) |
1140 | { | 1140 | { |
1141 | strcpy(info->driver, DRV_NAME); | 1141 | strlcpy(info->driver, DRV_NAME, sizeof(info->driver)); |
1142 | strcpy(info->version, DRV_VERSION); | 1142 | strlcpy(info->version, DRV_VERSION, sizeof(info->version)); |
1143 | sprintf(info->bus_info, "ISA 0x%lx", dev->base_addr); | 1143 | snprintf(info->bus_info, sizeof(info->bus_info), "ISA 0x%lx", |
1144 | dev->base_addr); | ||
1144 | } | 1145 | } |
1145 | 1146 | ||
1146 | static u32 netdev_get_msglevel(struct net_device *dev) | 1147 | static u32 netdev_get_msglevel(struct net_device *dev) |