mirror of
https://github.com/torvalds/linux.git
synced 2024-12-11 21:52:04 +00:00
net/cavium: Clean driver versions
Delete driver and module versions in favor of global linux kernel variant. Signed-off-by: Leon Romanovsky <leonro@mellanox.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
d4bb38156f
commit
b2c1e1d5a4
@ -28,7 +28,6 @@
|
||||
#include <asm/octeon/cvmx-agl-defs.h>
|
||||
|
||||
#define DRV_NAME "octeon_mgmt"
|
||||
#define DRV_VERSION "2.0"
|
||||
#define DRV_DESCRIPTION \
|
||||
"Cavium Networks Octeon MII (management) port Network Driver"
|
||||
|
||||
@ -1340,7 +1339,6 @@ static void octeon_mgmt_get_drvinfo(struct net_device *netdev,
|
||||
struct ethtool_drvinfo *info)
|
||||
{
|
||||
strlcpy(info->driver, DRV_NAME, sizeof(info->driver));
|
||||
strlcpy(info->version, DRV_VERSION, sizeof(info->version));
|
||||
strlcpy(info->fw_version, "N/A", sizeof(info->fw_version));
|
||||
strlcpy(info->bus_info, "N/A", sizeof(info->bus_info));
|
||||
}
|
||||
@ -1517,7 +1515,6 @@ static int octeon_mgmt_probe(struct platform_device *pdev)
|
||||
if (result)
|
||||
goto err;
|
||||
|
||||
dev_info(&pdev->dev, "Version " DRV_VERSION "\n");
|
||||
return 0;
|
||||
|
||||
err:
|
||||
@ -1574,4 +1571,3 @@ module_exit(octeon_mgmt_mod_exit);
|
||||
MODULE_DESCRIPTION(DRV_DESCRIPTION);
|
||||
MODULE_AUTHOR("David Daney");
|
||||
MODULE_LICENSE("GPL");
|
||||
MODULE_VERSION(DRV_VERSION);
|
||||
|
@ -16,7 +16,6 @@
|
||||
#include "../common/cavium_ptp.h"
|
||||
|
||||
#define DRV_NAME "nicvf"
|
||||
#define DRV_VERSION "1.0"
|
||||
|
||||
struct nicvf_stat {
|
||||
char name[ETH_GSTRING_LEN];
|
||||
@ -192,7 +191,6 @@ static void nicvf_get_drvinfo(struct net_device *netdev,
|
||||
struct nicvf *nic = netdev_priv(netdev);
|
||||
|
||||
strlcpy(info->driver, DRV_NAME, sizeof(info->driver));
|
||||
strlcpy(info->version, DRV_VERSION, sizeof(info->version));
|
||||
strlcpy(info->bus_info, pci_name(nic->pdev), sizeof(info->bus_info));
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user