mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
net/cisco: Delete driver and module versions
There is no need to overwrite global linux kernel version. Signed-off-by: Leon Romanovsky <leonro@mellanox.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
1bcdfb53ac
commit
f95f42b72c
3 changed files with 0 additions and 6 deletions
|
@ -33,8 +33,6 @@
|
|||
|
||||
#define DRV_NAME "enic"
|
||||
#define DRV_DESCRIPTION "Cisco VIC Ethernet NIC Driver"
|
||||
#define DRV_VERSION "2.3.0.53"
|
||||
#define DRV_COPYRIGHT "Copyright 2008-2013 Cisco Systems, Inc"
|
||||
|
||||
#define ENIC_BARS_MAX 6
|
||||
|
||||
|
|
|
@ -147,7 +147,6 @@ static void enic_get_drvinfo(struct net_device *netdev,
|
|||
return;
|
||||
|
||||
strlcpy(drvinfo->driver, DRV_NAME, sizeof(drvinfo->driver));
|
||||
strlcpy(drvinfo->version, DRV_VERSION, sizeof(drvinfo->version));
|
||||
strlcpy(drvinfo->fw_version, fw_info->fw_version,
|
||||
sizeof(drvinfo->fw_version));
|
||||
strlcpy(drvinfo->bus_info, pci_name(enic->pdev),
|
||||
|
|
|
@ -80,7 +80,6 @@ static const struct pci_device_id enic_id_table[] = {
|
|||
MODULE_DESCRIPTION(DRV_DESCRIPTION);
|
||||
MODULE_AUTHOR("Scott Feldman <scofeldm@cisco.com>");
|
||||
MODULE_LICENSE("GPL");
|
||||
MODULE_VERSION(DRV_VERSION);
|
||||
MODULE_DEVICE_TABLE(pci, enic_id_table);
|
||||
|
||||
#define ENIC_LARGE_PKT_THRESHOLD 1000
|
||||
|
@ -3055,8 +3054,6 @@ static struct pci_driver enic_driver = {
|
|||
|
||||
static int __init enic_init_module(void)
|
||||
{
|
||||
pr_info("%s, ver %s\n", DRV_DESCRIPTION, DRV_VERSION);
|
||||
|
||||
return pci_register_driver(&enic_driver);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue