aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ethernet/sgi/ioc3-eth.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/ethernet/sgi/ioc3-eth.c')
-rw-r--r--drivers/net/ethernet/sgi/ioc3-eth.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/ethernet/sgi/ioc3-eth.c b/drivers/net/ethernet/sgi/ioc3-eth.c
index dc171b4961e4..7ed08c32a9c5 100644
--- a/drivers/net/ethernet/sgi/ioc3-eth.c
+++ b/drivers/net/ethernet/sgi/ioc3-eth.c
@@ -1565,9 +1565,9 @@ static void ioc3_get_drvinfo (struct net_device *dev,
1565{ 1565{
1566 struct ioc3_private *ip = netdev_priv(dev); 1566 struct ioc3_private *ip = netdev_priv(dev);
1567 1567
1568 strcpy (info->driver, IOC3_NAME); 1568 strlcpy(info->driver, IOC3_NAME, sizeof(info->driver));
1569 strcpy (info->version, IOC3_VERSION); 1569 strlcpy(info->version, IOC3_VERSION, sizeof(info->version));
1570 strcpy (info->bus_info, pci_name(ip->pdev)); 1570 strlcpy(info->bus_info, pci_name(ip->pdev), sizeof(info->bus_info));
1571} 1571}
1572 1572
1573static int ioc3_get_settings(struct net_device *dev, struct ethtool_cmd *cmd) 1573static int ioc3_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)