diff options
author | Williams, Mitch A <mitch.a.williams@intel.com> | 2011-10-18 02:39:37 -0400 |
---|---|---|
committer | Jeff Kirsher <jeffrey.t.kirsher@intel.com> | 2011-10-21 06:06:55 -0400 |
commit | 10090751c009f4b21a12cd64e96376757563fd4b (patch) | |
tree | 4b322081a8c5c1d4bbce1886c28312ff98bf8e26 /drivers/net/ethernet/intel/igbvf | |
parent | cf533ea53ebfae41be15b103d78e7ebec30b9969 (diff) |
igbvf: Update module identification strings
Update adapter identification strings to properly indicate i350 VF devices
in the VF driver. Change the driver ID string to remove 82576-specific
wording. Update copyright date.
Signed-off-by: Mitch Williams <mitch.a.williams@intel.com>
Tested-by: Sibai Li <sibai.li@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Diffstat (limited to 'drivers/net/ethernet/intel/igbvf')
-rw-r--r-- | drivers/net/ethernet/intel/igbvf/netdev.c | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/drivers/net/ethernet/intel/igbvf/netdev.c b/drivers/net/ethernet/intel/igbvf/netdev.c index db2981748012..10e3c9c593d3 100644 --- a/drivers/net/ethernet/intel/igbvf/netdev.c +++ b/drivers/net/ethernet/intel/igbvf/netdev.c | |||
@@ -49,9 +49,9 @@ | |||
49 | char igbvf_driver_name[] = "igbvf"; | 49 | char igbvf_driver_name[] = "igbvf"; |
50 | const char igbvf_driver_version[] = DRV_VERSION; | 50 | const char igbvf_driver_version[] = DRV_VERSION; |
51 | static const char igbvf_driver_string[] = | 51 | static const char igbvf_driver_string[] = |
52 | "Intel(R) Virtual Function Network Driver"; | 52 | "Intel(R) Gigabit Virtual Function Network Driver"; |
53 | static const char igbvf_copyright[] = | 53 | static const char igbvf_copyright[] = |
54 | "Copyright (c) 2009 - 2010 Intel Corporation."; | 54 | "Copyright (c) 2009 - 2011 Intel Corporation."; |
55 | 55 | ||
56 | static int igbvf_poll(struct napi_struct *napi, int budget); | 56 | static int igbvf_poll(struct napi_struct *napi, int budget); |
57 | static void igbvf_reset(struct igbvf_adapter *); | 57 | static void igbvf_reset(struct igbvf_adapter *); |
@@ -2525,9 +2525,11 @@ static void igbvf_print_device_info(struct igbvf_adapter *adapter) | |||
2525 | struct net_device *netdev = adapter->netdev; | 2525 | struct net_device *netdev = adapter->netdev; |
2526 | struct pci_dev *pdev = adapter->pdev; | 2526 | struct pci_dev *pdev = adapter->pdev; |
2527 | 2527 | ||
2528 | dev_info(&pdev->dev, "Intel(R) 82576 Virtual Function\n"); | 2528 | if (hw->mac.type == e1000_vfadapt_i350) |
2529 | dev_info(&pdev->dev, "Intel(R) I350 Virtual Function\n"); | ||
2530 | else | ||
2531 | dev_info(&pdev->dev, "Intel(R) 82576 Virtual Function\n"); | ||
2529 | dev_info(&pdev->dev, "Address: %pM\n", netdev->dev_addr); | 2532 | dev_info(&pdev->dev, "Address: %pM\n", netdev->dev_addr); |
2530 | dev_info(&pdev->dev, "MAC: %d\n", hw->mac.type); | ||
2531 | } | 2533 | } |
2532 | 2534 | ||
2533 | static int igbvf_set_features(struct net_device *netdev, u32 features) | 2535 | static int igbvf_set_features(struct net_device *netdev, u32 features) |
@@ -2864,7 +2866,7 @@ module_exit(igbvf_exit_module); | |||
2864 | 2866 | ||
2865 | 2867 | ||
2866 | MODULE_AUTHOR("Intel Corporation, <e1000-devel@lists.sourceforge.net>"); | 2868 | MODULE_AUTHOR("Intel Corporation, <e1000-devel@lists.sourceforge.net>"); |
2867 | MODULE_DESCRIPTION("Intel(R) 82576 Virtual Function Network Driver"); | 2869 | MODULE_DESCRIPTION("Intel(R) Gigabit Virtual Function Network Driver"); |
2868 | MODULE_LICENSE("GPL"); | 2870 | MODULE_LICENSE("GPL"); |
2869 | MODULE_VERSION(DRV_VERSION); | 2871 | MODULE_VERSION(DRV_VERSION); |
2870 | 2872 | ||