From: Thierry Vignaud The GDRVINFO command of the ETHTOOL ioctl returns a bogus driver name. this bug confusees various network config tools... see mdk bug #12609 (http://qa.mandrakesoft.com/show_bug.cgi?id=12609) for reference Signed-off-by: Thierry Vignaud Signed-off-by: Andrew Morton --- 25-akpm/drivers/net/dl2k.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/net/dl2k.c~fix-driver-name-in-dl2k-as-returned-by-ethtool_gdrvinfo drivers/net/dl2k.c --- 25/drivers/net/dl2k.c~fix-driver-name-in-dl2k-as-returned-by-ethtool_gdrvinfo 2005-02-28 14:47:51.000000000 -0800 +++ 25-akpm/drivers/net/dl2k.c 2005-02-28 14:47:51.000000000 -0800 @@ -1199,7 +1199,7 @@ set_multicast (struct net_device *dev) static void rio_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info) { struct netdev_private *np = netdev_priv(dev); - strcpy(info->driver, "DL2K"); + strcpy(info->driver, "dl2k"); strcpy(info->version, DRV_VERSION); strcpy(info->bus_info, pci_name(np->pdev)); } _