forked from Minki/linux
net/atheros: Clean atheros code from driver version
Use linux kernel version for ethtool and module versions. Signed-off-by: Leon Romanovsky <leonro@mellanox.com> Acked-by: Chris Snook <chris.snook@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
52682a130f
commit
ea97374214
@ -583,7 +583,6 @@ struct atl1c_adapter {
|
||||
readl(((a)->hw_addr + reg) + ((offset) << 2)))
|
||||
|
||||
extern char atl1c_driver_name[];
|
||||
extern char atl1c_driver_version[];
|
||||
|
||||
void atl1c_reinit_locked(struct atl1c_adapter *adapter);
|
||||
s32 atl1c_reset_hw(struct atl1c_hw *hw);
|
||||
|
@ -221,8 +221,6 @@ static void atl1c_get_drvinfo(struct net_device *netdev,
|
||||
struct atl1c_adapter *adapter = netdev_priv(netdev);
|
||||
|
||||
strlcpy(drvinfo->driver, atl1c_driver_name, sizeof(drvinfo->driver));
|
||||
strlcpy(drvinfo->version, atl1c_driver_version,
|
||||
sizeof(drvinfo->version));
|
||||
strlcpy(drvinfo->bus_info, pci_name(adapter->pdev),
|
||||
sizeof(drvinfo->bus_info));
|
||||
}
|
||||
|
@ -8,9 +8,7 @@
|
||||
|
||||
#include "atl1c.h"
|
||||
|
||||
#define ATL1C_DRV_VERSION "1.0.1.1-NAPI"
|
||||
char atl1c_driver_name[] = "atl1c";
|
||||
char atl1c_driver_version[] = ATL1C_DRV_VERSION;
|
||||
|
||||
/*
|
||||
* atl1c_pci_tbl - PCI Device ID Table
|
||||
@ -37,7 +35,6 @@ MODULE_AUTHOR("Jie Yang");
|
||||
MODULE_AUTHOR("Qualcomm Atheros Inc., <nic-devel@qualcomm.com>");
|
||||
MODULE_DESCRIPTION("Qualcomm Atheros 100/1000M Ethernet Network Driver");
|
||||
MODULE_LICENSE("GPL");
|
||||
MODULE_VERSION(ATL1C_DRV_VERSION);
|
||||
|
||||
static int atl1c_stop_mac(struct atl1c_hw *hw);
|
||||
static void atl1c_disable_l0s_l1(struct atl1c_hw *hw);
|
||||
@ -2642,8 +2639,6 @@ static int atl1c_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
|
||||
goto err_register;
|
||||
}
|
||||
|
||||
if (netif_msg_probe(adapter))
|
||||
dev_info(&pdev->dev, "version %s\n", ATL1C_DRV_VERSION);
|
||||
cards_found++;
|
||||
return 0;
|
||||
|
||||
|
@ -482,7 +482,6 @@ struct atl1e_adapter {
|
||||
readl(((a)->hw_addr + reg) + ((offset) << 2)))
|
||||
|
||||
extern char atl1e_driver_name[];
|
||||
extern char atl1e_driver_version[];
|
||||
|
||||
void atl1e_check_options(struct atl1e_adapter *adapter);
|
||||
int atl1e_up(struct atl1e_adapter *adapter);
|
||||
|
@ -307,8 +307,6 @@ static void atl1e_get_drvinfo(struct net_device *netdev,
|
||||
struct atl1e_adapter *adapter = netdev_priv(netdev);
|
||||
|
||||
strlcpy(drvinfo->driver, atl1e_driver_name, sizeof(drvinfo->driver));
|
||||
strlcpy(drvinfo->version, atl1e_driver_version,
|
||||
sizeof(drvinfo->version));
|
||||
strlcpy(drvinfo->fw_version, "L1e", sizeof(drvinfo->fw_version));
|
||||
strlcpy(drvinfo->bus_info, pci_name(adapter->pdev),
|
||||
sizeof(drvinfo->bus_info));
|
||||
|
@ -8,10 +8,7 @@
|
||||
|
||||
#include "atl1e.h"
|
||||
|
||||
#define DRV_VERSION "1.0.0.7-NAPI"
|
||||
|
||||
char atl1e_driver_name[] = "ATL1E";
|
||||
char atl1e_driver_version[] = DRV_VERSION;
|
||||
#define PCI_DEVICE_ID_ATTANSIC_L1E 0x1026
|
||||
/*
|
||||
* atl1e_pci_tbl - PCI Device ID Table
|
||||
@ -33,7 +30,6 @@ MODULE_DEVICE_TABLE(pci, atl1e_pci_tbl);
|
||||
MODULE_AUTHOR("Atheros Corporation, <xiong.huang@atheros.com>, Jie Yang <jie.yang@atheros.com>");
|
||||
MODULE_DESCRIPTION("Atheros 1000M Ethernet Network Driver");
|
||||
MODULE_LICENSE("GPL");
|
||||
MODULE_VERSION(DRV_VERSION);
|
||||
|
||||
static void atl1e_setup_mac_ctrl(struct atl1e_adapter *adapter);
|
||||
|
||||
|
@ -65,12 +65,10 @@
|
||||
|
||||
#include "atl1.h"
|
||||
|
||||
#define ATLX_DRIVER_VERSION "2.1.3"
|
||||
MODULE_AUTHOR("Xiong Huang <xiong.huang@atheros.com>, "
|
||||
"Chris Snook <csnook@redhat.com>, "
|
||||
"Jay Cliburn <jcliburn@gmail.com>");
|
||||
MODULE_LICENSE("GPL");
|
||||
MODULE_VERSION(ATLX_DRIVER_VERSION);
|
||||
|
||||
/* Temporary hack for merging atl1 and atl2 */
|
||||
#include "atlx.c"
|
||||
@ -2965,8 +2963,6 @@ static int atl1_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
|
||||
/* get device revision number */
|
||||
adapter->hw.dev_rev = ioread16(adapter->hw.hw_addr +
|
||||
(REG_MASTER_CTRL + 2));
|
||||
if (netif_msg_probe(adapter))
|
||||
dev_info(&pdev->dev, "version %s\n", ATLX_DRIVER_VERSION);
|
||||
|
||||
/* set default ring resource counts */
|
||||
adapter->rfd_ring.count = adapter->rrd_ring.count = ATL1_DEFAULT_RFD;
|
||||
@ -3344,8 +3340,6 @@ static void atl1_get_drvinfo(struct net_device *netdev,
|
||||
struct atl1_adapter *adapter = netdev_priv(netdev);
|
||||
|
||||
strlcpy(drvinfo->driver, ATLX_DRIVER_NAME, sizeof(drvinfo->driver));
|
||||
strlcpy(drvinfo->version, ATLX_DRIVER_VERSION,
|
||||
sizeof(drvinfo->version));
|
||||
strlcpy(drvinfo->bus_info, pci_name(adapter->pdev),
|
||||
sizeof(drvinfo->bus_info));
|
||||
}
|
||||
|
@ -36,18 +36,13 @@
|
||||
|
||||
#include "atl2.h"
|
||||
|
||||
#define ATL2_DRV_VERSION "2.2.3"
|
||||
|
||||
static const char atl2_driver_name[] = "atl2";
|
||||
static const char atl2_driver_string[] = "Atheros(R) L2 Ethernet Driver";
|
||||
static const char atl2_copyright[] = "Copyright (c) 2007 Atheros Corporation.";
|
||||
static const char atl2_driver_version[] = ATL2_DRV_VERSION;
|
||||
static const struct ethtool_ops atl2_ethtool_ops;
|
||||
|
||||
MODULE_AUTHOR("Atheros Corporation <xiong.huang@atheros.com>, Chris Snook <csnook@redhat.com>");
|
||||
MODULE_DESCRIPTION("Atheros Fast Ethernet Network Driver");
|
||||
MODULE_LICENSE("GPL");
|
||||
MODULE_VERSION(ATL2_DRV_VERSION);
|
||||
|
||||
/*
|
||||
* atl2_pci_tbl - PCI Device ID Table
|
||||
@ -1688,9 +1683,6 @@ static struct pci_driver atl2_driver = {
|
||||
*/
|
||||
static int __init atl2_init_module(void)
|
||||
{
|
||||
printk(KERN_INFO "%s - version %s\n", atl2_driver_string,
|
||||
atl2_driver_version);
|
||||
printk(KERN_INFO "%s\n", atl2_copyright);
|
||||
return pci_register_driver(&atl2_driver);
|
||||
}
|
||||
module_init(atl2_init_module);
|
||||
@ -2011,8 +2003,6 @@ static void atl2_get_drvinfo(struct net_device *netdev,
|
||||
struct atl2_adapter *adapter = netdev_priv(netdev);
|
||||
|
||||
strlcpy(drvinfo->driver, atl2_driver_name, sizeof(drvinfo->driver));
|
||||
strlcpy(drvinfo->version, atl2_driver_version,
|
||||
sizeof(drvinfo->version));
|
||||
strlcpy(drvinfo->fw_version, "L2", sizeof(drvinfo->fw_version));
|
||||
strlcpy(drvinfo->bus_info, pci_name(adapter->pdev),
|
||||
sizeof(drvinfo->bus_info));
|
||||
|
Loading…
Reference in New Issue
Block a user