diff options
Diffstat (limited to 'drivers/net/ixgb/ixgb_main.c')
-rw-r--r-- | drivers/net/ixgb/ixgb_main.c | 46 |
1 files changed, 23 insertions, 23 deletions
diff --git a/drivers/net/ixgb/ixgb_main.c b/drivers/net/ixgb/ixgb_main.c index 2e0f4b950a90..cfde7c2569bb 100644 --- a/drivers/net/ixgb/ixgb_main.c +++ b/drivers/net/ixgb/ixgb_main.c | |||
@@ -1,27 +1,27 @@ | |||
1 | /******************************************************************************* | 1 | /******************************************************************************* |
2 | 2 | ||
3 | 3 | Intel PRO/10GbE Linux driver | |
4 | Copyright(c) 1999 - 2006 Intel Corporation. All rights reserved. | 4 | Copyright(c) 1999 - 2006 Intel Corporation. |
5 | 5 | ||
6 | This program is free software; you can redistribute it and/or modify it | 6 | This program is free software; you can redistribute it and/or modify it |
7 | under the terms of the GNU General Public License as published by the Free | 7 | under the terms and conditions of the GNU General Public License, |
8 | Software Foundation; either version 2 of the License, or (at your option) | 8 | version 2, as published by the Free Software Foundation. |
9 | any later version. | 9 | |
10 | 10 | This program is distributed in the hope it will be useful, but WITHOUT | |
11 | This program is distributed in the hope that it will be useful, but WITHOUT | 11 | ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
12 | ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | 12 | FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
13 | FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
14 | more details. | 13 | more details. |
15 | 14 | ||
16 | You should have received a copy of the GNU General Public License along with | 15 | You should have received a copy of the GNU General Public License along with |
17 | this program; if not, write to the Free Software Foundation, Inc., 59 | 16 | this program; if not, write to the Free Software Foundation, Inc., |
18 | Temple Place - Suite 330, Boston, MA 02111-1307, USA. | 17 | 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. |
19 | 18 | ||
20 | The full GNU General Public License is included in this distribution in the | 19 | The full GNU General Public License is included in this distribution in |
21 | file called LICENSE. | 20 | the file called "COPYING". |
22 | 21 | ||
23 | Contact Information: | 22 | Contact Information: |
24 | Linux NICS <linux.nics@intel.com> | 23 | Linux NICS <linux.nics@intel.com> |
24 | e1000-devel Mailing List <e1000-devel@lists.sourceforge.net> | ||
25 | Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 | 25 | Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 |
26 | 26 | ||
27 | *******************************************************************************/ | 27 | *******************************************************************************/ |
@@ -36,7 +36,7 @@ static char ixgb_driver_string[] = "Intel(R) PRO/10GbE Network Driver"; | |||
36 | #else | 36 | #else |
37 | #define DRIVERNAPI "-NAPI" | 37 | #define DRIVERNAPI "-NAPI" |
38 | #endif | 38 | #endif |
39 | #define DRV_VERSION "1.0.112-k2"DRIVERNAPI | 39 | #define DRV_VERSION "1.0.117-k2"DRIVERNAPI |
40 | char ixgb_driver_version[] = DRV_VERSION; | 40 | char ixgb_driver_version[] = DRV_VERSION; |
41 | static char ixgb_copyright[] = "Copyright (c) 1999-2006 Intel Corporation."; | 41 | static char ixgb_copyright[] = "Copyright (c) 1999-2006 Intel Corporation."; |
42 | 42 | ||
@@ -437,7 +437,7 @@ ixgb_probe(struct pci_dev *pdev, | |||
437 | netdev->poll_controller = ixgb_netpoll; | 437 | netdev->poll_controller = ixgb_netpoll; |
438 | #endif | 438 | #endif |
439 | 439 | ||
440 | strcpy(netdev->name, pci_name(pdev)); | 440 | strncpy(netdev->name, pci_name(pdev), sizeof(netdev->name) - 1); |
441 | netdev->mem_start = mmio_start; | 441 | netdev->mem_start = mmio_start; |
442 | netdev->mem_end = mmio_start + mmio_len; | 442 | netdev->mem_end = mmio_start + mmio_len; |
443 | netdev->base_addr = adapter->hw.io_base; | 443 | netdev->base_addr = adapter->hw.io_base; |
@@ -2230,7 +2230,7 @@ static pci_ers_result_t ixgb_io_error_detected (struct pci_dev *pdev, | |||
2230 | enum pci_channel_state state) | 2230 | enum pci_channel_state state) |
2231 | { | 2231 | { |
2232 | struct net_device *netdev = pci_get_drvdata(pdev); | 2232 | struct net_device *netdev = pci_get_drvdata(pdev); |
2233 | struct ixgb_adapter *adapter = netdev->priv; | 2233 | struct ixgb_adapter *adapter = netdev_priv(netdev); |
2234 | 2234 | ||
2235 | if(netif_running(netdev)) | 2235 | if(netif_running(netdev)) |
2236 | ixgb_down(adapter, TRUE); | 2236 | ixgb_down(adapter, TRUE); |
@@ -2253,7 +2253,7 @@ static pci_ers_result_t ixgb_io_error_detected (struct pci_dev *pdev, | |||
2253 | static pci_ers_result_t ixgb_io_slot_reset (struct pci_dev *pdev) | 2253 | static pci_ers_result_t ixgb_io_slot_reset (struct pci_dev *pdev) |
2254 | { | 2254 | { |
2255 | struct net_device *netdev = pci_get_drvdata(pdev); | 2255 | struct net_device *netdev = pci_get_drvdata(pdev); |
2256 | struct ixgb_adapter *adapter = netdev->priv; | 2256 | struct ixgb_adapter *adapter = netdev_priv(netdev); |
2257 | 2257 | ||
2258 | if(pci_enable_device(pdev)) { | 2258 | if(pci_enable_device(pdev)) { |
2259 | DPRINTK(PROBE, ERR, "Cannot re-enable PCI device after reset.\n"); | 2259 | DPRINTK(PROBE, ERR, "Cannot re-enable PCI device after reset.\n"); |
@@ -2297,7 +2297,7 @@ static pci_ers_result_t ixgb_io_slot_reset (struct pci_dev *pdev) | |||
2297 | static void ixgb_io_resume (struct pci_dev *pdev) | 2297 | static void ixgb_io_resume (struct pci_dev *pdev) |
2298 | { | 2298 | { |
2299 | struct net_device *netdev = pci_get_drvdata(pdev); | 2299 | struct net_device *netdev = pci_get_drvdata(pdev); |
2300 | struct ixgb_adapter *adapter = netdev->priv; | 2300 | struct ixgb_adapter *adapter = netdev_priv(netdev); |
2301 | 2301 | ||
2302 | pci_set_master(pdev); | 2302 | pci_set_master(pdev); |
2303 | 2303 | ||