@@ -2470,8 +2470,8 @@ static void hme_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info
{
struct happy_meal *hp = netdev_priv(dev);
- strlcpy(info->driver, "sunhme", sizeof(info->driver));
- strlcpy(info->version, "2.02", sizeof(info->version));
+ strlcpy(info->driver, DRV_NAME, sizeof(info->driver));
+ strlcpy(info->version, DRV_VERSION, sizeof(info->version));
if (hp->happy_flags & HFLAG_PCI) {
struct pci_dev *pdev = hp->happy_dev;
strlcpy(info->bus_info, pci_name(pdev), sizeof(info->bus_info));
The driver prints a version number on startup, use the same one here. Fixes: 050bbb196392 ("[NET] sunhme: Convert to new SBUS driver framework.") Signed-off-by: Rolf Eike Beer <eike-kernel@sf-tec.de> --- v2: correct "Fixes" line syntax drivers/net/ethernet/sun/sunhme.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)