net/amd: Remove useless driver version
authorLeon Romanovsky <leonro@mellanox.com>
Mon, 24 Feb 2020 08:53:06 +0000 (10:53 +0200)
committerDavid S. Miller <davem@davemloft.net>
Mon, 24 Feb 2020 19:24:47 +0000 (11:24 -0800)
Convert AMD drivers to respect universal linux kernel version.

Signed-off-by: Leon Romanovsky <leonro@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/amd/amd8111e.c
drivers/net/ethernet/amd/au1000_eth.c
drivers/net/ethernet/amd/nmclan_cs.c
drivers/net/ethernet/amd/pcnet32.c
drivers/net/ethernet/amd/sunlance.c
drivers/net/ethernet/amd/xgbe/xgbe-ethtool.c
drivers/net/ethernet/amd/xgbe/xgbe-main.c
drivers/net/ethernet/amd/xgbe/xgbe.h

index 0f3b743425e82fa8654e2b8e04a810ab13132ee1..7a1286f8e983f79043f085f1267798a6f3932386 100644 (file)
@@ -84,9 +84,8 @@ Revision History:
 
 #include "amd8111e.h"
 #define MODULE_NAME    "amd8111e"
-#define MODULE_VERS    "3.0.7"
 MODULE_AUTHOR("Advanced Micro Devices, Inc.");
-MODULE_DESCRIPTION ("AMD8111 based 10/100 Ethernet Controller. Driver Version "MODULE_VERS);
+MODULE_DESCRIPTION("AMD8111 based 10/100 Ethernet Controller.");
 MODULE_LICENSE("GPL");
 module_param_array(speed_duplex, int, NULL, 0);
 MODULE_PARM_DESC(speed_duplex, "Set device speed and duplex modes, 0: Auto Negotiate, 1: 10Mbps Half Duplex, 2: 10Mbps Full Duplex, 3: 100Mbps Half Duplex, 4: 100Mbps Full Duplex");
@@ -1366,7 +1365,6 @@ static void amd8111e_get_drvinfo(struct net_device *dev,
        struct amd8111e_priv *lp = netdev_priv(dev);
        struct pci_dev *pci_dev = lp->pci_dev;
        strlcpy(info->driver, MODULE_NAME, sizeof(info->driver));
-       strlcpy(info->version, MODULE_VERS, sizeof(info->version));
        snprintf(info->fw_version, sizeof(info->fw_version),
                "%u", chip_version);
        strlcpy(info->bus_info, pci_name(pci_dev), sizeof(info->bus_info));
@@ -1875,7 +1873,6 @@ static int amd8111e_probe_one(struct pci_dev *pdev,
 
        /*  display driver and device information */
        chip_version = (readl(lp->mmio + CHIPID) & 0xf0000000)>>28;
-       dev_info(&pdev->dev, "AMD-8111e Driver Version: %s\n", MODULE_VERS);
        dev_info(&pdev->dev, "[ Rev %x ] PCI 10/100BaseT Ethernet %pM\n",
                 chip_version, dev->dev_addr);
        if (lp->ext_phy_id)
index 089a4fbc61a020900b36ea493c4abf9b7acf35a6..9f6e3cc2ce80f771b84c6b12196ea5b289a63044 100644 (file)
@@ -63,14 +63,12 @@ static int au1000_debug = 3;
                                NETIF_MSG_LINK)
 
 #define DRV_NAME       "au1000_eth"
-#define DRV_VERSION    "1.7"
 #define DRV_AUTHOR     "Pete Popov <ppopov@embeddedalley.com>"
 #define DRV_DESC       "Au1xxx on-chip Ethernet driver"
 
 MODULE_AUTHOR(DRV_AUTHOR);
 MODULE_DESCRIPTION(DRV_DESC);
 MODULE_LICENSE("GPL");
-MODULE_VERSION(DRV_VERSION);
 
 /* AU1000 MAC registers and bits */
 #define MAC_CONTROL            0x0
@@ -656,7 +654,6 @@ au1000_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
        struct au1000_private *aup = netdev_priv(dev);
 
        strlcpy(info->driver, DRV_NAME, sizeof(info->driver));
-       strlcpy(info->version, DRV_VERSION, sizeof(info->version));
        snprintf(info->bus_info, sizeof(info->bus_info), "%s %d", DRV_NAME,
                 aup->mac_id);
 }
@@ -1290,8 +1287,6 @@ static int au1000_probe(struct platform_device *pdev)
        netdev_info(dev, "Au1xx0 Ethernet found at 0x%lx, irq %d\n",
                        (unsigned long)base->start, irq);
 
-       pr_info_once("%s version %s %s\n", DRV_NAME, DRV_VERSION, DRV_AUTHOR);
-
        return 0;
 
 err_out:
index 023aecf6ab301dbcdd3e21a88ea355349dbf92f1..11c0b13edd30fe937913b21187dc183015ff9a86 100644 (file)
@@ -114,8 +114,6 @@ Log: nmclan_cs.c,v
 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
 
 #define DRV_NAME       "nmclan_cs"
-#define DRV_VERSION    "0.16"
-
 
 /* ----------------------------------------------------------------------------
 Conditional Compilation Options
@@ -367,7 +365,7 @@ typedef struct _mace_private {
 
     char tx_free_frames; /* Number of free transmit frame buffers */
     char tx_irq_disabled; /* MACE TX interrupt disabled */
-    
+
     spinlock_t bank_lock; /* Must be held if you step off bank 0 */
 } mace_private;
 
@@ -444,7 +442,7 @@ static int nmclan_probe(struct pcmcia_device *link)
     lp = netdev_priv(dev);
     lp->p_dev = link;
     link->priv = dev;
-    
+
     spin_lock_init(&lp->bank_lock);
     link->resource[0]->end = 32;
     link->resource[0]->flags |= IO_DATA_PATH_WIDTH_AUTO;
@@ -817,7 +815,6 @@ static void netdev_get_drvinfo(struct net_device *dev,
                               struct ethtool_drvinfo *info)
 {
        strlcpy(info->driver, DRV_NAME, sizeof(info->driver));
-       strlcpy(info->version, DRV_VERSION, sizeof(info->version));
        snprintf(info->bus_info, sizeof(info->bus_info),
                "PCMCIA 0x%lx", dev->base_addr);
 }
@@ -1110,7 +1107,7 @@ static int mace_rx(struct net_device *dev, unsigned char RxCnt)
        if (pkt_len & 1)
            *(skb_tail_pointer(skb) - 1) = inb(ioaddr + AM2150_RCV);
        skb->protocol = eth_type_trans(skb, dev);
-       
+
        netif_rx(skb); /* Send the packet to the upper (protocol) layers. */
 
        dev->stats.rx_packets++;
index dc7d88227e76c5d45f6b08ac1b23b74b26ac7287..07e8211eea51d80d368f9e08c349161dbbf5fe85 100644 (file)
 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
 
 #define DRV_NAME       "pcnet32"
-#define DRV_VERSION    "1.35"
 #define DRV_RELDATE    "21.Apr.2008"
 #define PFX            DRV_NAME ": "
 
-static const char *const version =
-    DRV_NAME ".c:v" DRV_VERSION " " DRV_RELDATE " tsbogend@alpha.franken.de\n";
-
 #include <linux/module.h>
 #include <linux/kernel.h>
 #include <linux/sched.h>
@@ -809,7 +805,6 @@ static void pcnet32_get_drvinfo(struct net_device *dev,
        struct pcnet32_private *lp = netdev_priv(dev);
 
        strlcpy(info->driver, DRV_NAME, sizeof(info->driver));
-       strlcpy(info->version, DRV_VERSION, sizeof(info->version));
        if (lp->pci_dev)
                strlcpy(info->bus_info, pci_name(lp->pci_dev),
                        sizeof(info->bus_info));
@@ -3006,8 +3001,6 @@ MODULE_LICENSE("GPL");
 
 static int __init pcnet32_init_module(void)
 {
-       pr_info("%s", version);
-
        pcnet32_debug = netif_msg_init(debug, PCNET32_MSG_DEFAULT);
 
        if ((tx_start_pt >= 0) && (tx_start_pt <= 3))
index b00e00881253193fe6c5f6dbd0a8a9e42dc072a0..a21b2e60157e56c3ce0aed17c2c254f8b00af729 100644 (file)
@@ -105,14 +105,9 @@ static char lancestr[] = "LANCE";
 #include <asm/irq.h>
 
 #define DRV_NAME       "sunlance"
-#define DRV_VERSION    "2.02"
 #define DRV_RELDATE    "8/24/03"
 #define DRV_AUTHOR     "Miguel de Icaza (miguel@nuclecu.unam.mx)"
 
-static char version[] =
-       DRV_NAME ".c:v" DRV_VERSION " " DRV_RELDATE " " DRV_AUTHOR "\n";
-
-MODULE_VERSION(DRV_VERSION);
 MODULE_AUTHOR(DRV_AUTHOR);
 MODULE_DESCRIPTION("Sun Lance ethernet driver");
 MODULE_LICENSE("GPL");
@@ -1282,7 +1277,6 @@ static void lance_free_hwresources(struct lance_private *lp)
 static void sparc_lance_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
 {
        strlcpy(info->driver, "sunlance", sizeof(info->driver));
-       strlcpy(info->version, "2.02", sizeof(info->version));
 }
 
 static const struct ethtool_ops sparc_lance_ethtool_ops = {
@@ -1305,7 +1299,6 @@ static int sparc_lance_probe_one(struct platform_device *op,
                                 struct platform_device *lebuffer)
 {
        struct device_node *dp = op->dev.of_node;
-       static unsigned version_printed;
        struct lance_private *lp;
        struct net_device *dev;
        int    i;
@@ -1316,9 +1309,6 @@ static int sparc_lance_probe_one(struct platform_device *op,
 
        lp = netdev_priv(dev);
 
-       if (sparc_lance_debug && version_printed++ == 0)
-               printk (KERN_INFO "%s", version);
-
        spin_lock_init(&lp->lock);
 
        /* Copy the IDPROM ethernet address to the device structure, later we
index 8083173f1a8f3d9ba1cb92ceb9210b8c0122e171..b23c8ee24ee3ffe7b5adaf6a6534ddc5d3026efd 100644 (file)
@@ -405,7 +405,6 @@ static void xgbe_get_drvinfo(struct net_device *netdev,
        struct xgbe_hw_features *hw_feat = &pdata->hw_feat;
 
        strlcpy(drvinfo->driver, XGBE_DRV_NAME, sizeof(drvinfo->driver));
-       strlcpy(drvinfo->version, XGBE_DRV_VERSION, sizeof(drvinfo->version));
        strlcpy(drvinfo->bus_info, dev_name(pdata->dev),
                sizeof(drvinfo->bus_info));
        snprintf(drvinfo->fw_version, sizeof(drvinfo->fw_version), "%d.%d.%d",
index 7ce9c69e9c44f3d4288d04f710b96222ebf2fb77..2a70714a791d16b109c6293052c5b32f69d97a5d 100644 (file)
 
 MODULE_AUTHOR("Tom Lendacky <thomas.lendacky@amd.com>");
 MODULE_LICENSE("Dual BSD/GPL");
-MODULE_VERSION(XGBE_DRV_VERSION);
 MODULE_DESCRIPTION(XGBE_DRV_DESC);
 
 static int debug = -1;
index 47bcbcf58048c1af2b52ce1ff13a10c410706576..5897e46faca553718e90009976bad2e5eb9c5dde 100644 (file)
 #include <linux/list.h>
 
 #define XGBE_DRV_NAME          "amd-xgbe"
-#define XGBE_DRV_VERSION       "1.0.3"
 #define XGBE_DRV_DESC          "AMD 10 Gigabit Ethernet Driver"
 
 /* Descriptor related defines */