diff options
Diffstat (limited to 'drivers/net/ethernet/packetengines')
| -rw-r--r-- | drivers/net/ethernet/packetengines/Kconfig | 4 | ||||
| -rw-r--r-- | drivers/net/ethernet/packetengines/hamachi.c | 7 | ||||
| -rw-r--r-- | drivers/net/ethernet/packetengines/yellowfin.c | 7 | 
3 files changed, 10 insertions, 8 deletions
diff --git a/drivers/net/ethernet/packetengines/Kconfig b/drivers/net/ethernet/packetengines/Kconfig index 8f29feb3554..cbbeca3f8c5 100644 --- a/drivers/net/ethernet/packetengines/Kconfig +++ b/drivers/net/ethernet/packetengines/Kconfig @@ -32,8 +32,8 @@ config HAMACHI  	  called hamachi.  config YELLOWFIN -	tristate "Packet Engines Yellowfin Gigabit-NIC support (EXPERIMENTAL)" -	depends on PCI && EXPERIMENTAL +	tristate "Packet Engines Yellowfin Gigabit-NIC support" +	depends on PCI  	select CRC32  	---help---  	  Say Y here if you have a Packet Engines G-NIC PCI Gigabit Ethernet diff --git a/drivers/net/ethernet/packetengines/hamachi.c b/drivers/net/ethernet/packetengines/hamachi.c index bf829ee3007..cac33e5f9bc 100644 --- a/drivers/net/ethernet/packetengines/hamachi.c +++ b/drivers/net/ethernet/packetengines/hamachi.c @@ -1808,9 +1808,10 @@ static int check_if_running(struct net_device *dev)  static void hamachi_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)  {  	struct hamachi_private *np = netdev_priv(dev); -	strcpy(info->driver, DRV_NAME); -	strcpy(info->version, DRV_VERSION); -	strcpy(info->bus_info, pci_name(np->pci_dev)); + +	strlcpy(info->driver, DRV_NAME, sizeof(info->driver)); +	strlcpy(info->version, DRV_VERSION, sizeof(info->version)); +	strlcpy(info->bus_info, pci_name(np->pci_dev), sizeof(info->bus_info));  }  static int hamachi_get_settings(struct net_device *dev, struct ethtool_cmd *ecmd) diff --git a/drivers/net/ethernet/packetengines/yellowfin.c b/drivers/net/ethernet/packetengines/yellowfin.c index fbaed4fa72f..d28593b1fc3 100644 --- a/drivers/net/ethernet/packetengines/yellowfin.c +++ b/drivers/net/ethernet/packetengines/yellowfin.c @@ -1326,9 +1326,10 @@ static void set_rx_mode(struct net_device *dev)  static void yellowfin_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)  {  	struct yellowfin_private *np = netdev_priv(dev); -	strcpy(info->driver, DRV_NAME); -	strcpy(info->version, DRV_VERSION); -	strcpy(info->bus_info, pci_name(np->pci_dev)); + +	strlcpy(info->driver, DRV_NAME, sizeof(info->driver)); +	strlcpy(info->version, DRV_VERSION, sizeof(info->version)); +	strlcpy(info->bus_info, pci_name(np->pci_dev), sizeof(info->bus_info));  }  static const struct ethtool_ops ethtool_ops = {  |