aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ethernet/8390/ax88796.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/ethernet/8390/ax88796.c')
-rw-r--r--drivers/net/ethernet/8390/ax88796.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/ethernet/8390/ax88796.c b/drivers/net/ethernet/8390/ax88796.c
index 70dba5d01ad3..7eeddf01307f 100644
--- a/drivers/net/ethernet/8390/ax88796.c
+++ b/drivers/net/ethernet/8390/ax88796.c
@@ -469,9 +469,9 @@ static void ax_get_drvinfo(struct net_device *dev,
469{ 469{
470 struct platform_device *pdev = to_platform_device(dev->dev.parent); 470 struct platform_device *pdev = to_platform_device(dev->dev.parent);
471 471
472 strcpy(info->driver, DRV_NAME); 472 strlcpy(info->driver, DRV_NAME, sizeof(info->driver));
473 strcpy(info->version, DRV_VERSION); 473 strlcpy(info->version, DRV_VERSION, sizeof(info->version));
474 strcpy(info->bus_info, pdev->name); 474 strlcpy(info->bus_info, pdev->name, sizeof(info->bus_info));
475} 475}
476 476
477static int ax_get_settings(struct net_device *dev, struct ethtool_cmd *cmd) 477static int ax_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)