Commit 8b21b305 authored by Scott Feldman's avatar Scott Feldman Committed by Jeff Garzik

[netdrvr e1000] Misc - copyright, changelog spelling

* Misc - copyright update, changelog, spelling fixes.
parent 82c76902
/******************************************************************************* /*******************************************************************************
Copyright(c) 1999 - 2003 Intel Corporation. All rights reserved. Copyright(c) 1999 - 2004 Intel Corporation. All rights reserved.
This program is free software; you can redistribute it and/or modify it This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the Free under the terms of the GNU General Public License as published by the Free
......
/******************************************************************************* /*******************************************************************************
Copyright(c) 1999 - 2003 Intel Corporation. All rights reserved. Copyright(c) 1999 - 2004 Intel Corporation. All rights reserved.
This program is free software; you can redistribute it and/or modify it This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the Free under the terms of the GNU General Public License as published by the Free
......
/******************************************************************************* /*******************************************************************************
Copyright(c) 1999 - 2003 Intel Corporation. All rights reserved. Copyright(c) 1999 - 2004 Intel Corporation. All rights reserved.
This program is free software; you can redistribute it and/or modify it This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the Free under the terms of the GNU General Public License as published by the Free
......
/******************************************************************************* /*******************************************************************************
Copyright(c) 1999 - 2003 Intel Corporation. All rights reserved. Copyright(c) 1999 - 2004 Intel Corporation. All rights reserved.
This program is free software; you can redistribute it and/or modify it This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the Free under the terms of the GNU General Public License as published by the Free
......
/******************************************************************************* /*******************************************************************************
Copyright(c) 1999 - 2003 Intel Corporation. All rights reserved. Copyright(c) 1999 - 2004 Intel Corporation. All rights reserved.
This program is free software; you can redistribute it and/or modify it This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the Free under the terms of the GNU General Public License as published by the Free
...@@ -30,7 +30,12 @@ ...@@ -30,7 +30,12 @@
/* Change Log /* Change Log
* *
* 5.2.27 12/14/03 * 5.2.30.1 1/29/03
* o Set VLAN filtering to IEEE 802.1Q after reset so we don't break
* SoL connections that use VLANs.
* o Allow 1000/Full setting for AutoNeg param for Fiber connections
* Jon D Mason [jonmason@us.ibm.com].
* o Race between Tx queue and Tx clean fixed with a spin lock.
* o Added netpoll support. * o Added netpoll support.
* o Fixed endianess bug causing ethtool loopback diags to fail on ppc. * o Fixed endianess bug causing ethtool loopback diags to fail on ppc.
* o Use pdev->irq rather than netdev->irq in preparation for MSI support. * o Use pdev->irq rather than netdev->irq in preparation for MSI support.
...@@ -63,8 +68,8 @@ ...@@ -63,8 +68,8 @@
char e1000_driver_name[] = "e1000"; char e1000_driver_name[] = "e1000";
char e1000_driver_string[] = "Intel(R) PRO/1000 Network Driver"; char e1000_driver_string[] = "Intel(R) PRO/1000 Network Driver";
char e1000_driver_version[] = "5.2.27-k1"; char e1000_driver_version[] = "5.2.30.1-k1";
char e1000_copyright[] = "Copyright (c) 1999-2003 Intel Corporation."; char e1000_copyright[] = "Copyright (c) 1999-2004 Intel Corporation.";
/* e1000_pci_tbl - PCI Device ID Table /* e1000_pci_tbl - PCI Device ID Table
* *
......
/******************************************************************************* /*******************************************************************************
Copyright(c) 1999 - 2003 Intel Corporation. All rights reserved. Copyright(c) 1999 - 2004 Intel Corporation. All rights reserved.
This program is free software; you can redistribute it and/or modify it This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the Free under the terms of the GNU General Public License as published by the Free
......
/******************************************************************************* /*******************************************************************************
Copyright(c) 1999 - 2003 Intel Corporation. All rights reserved. Copyright(c) 1999 - 2004 Intel Corporation. All rights reserved.
This program is free software; you can redistribute it and/or modify it This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the Free under the terms of the GNU General Public License as published by the Free
...@@ -63,7 +63,7 @@ MODULE_PARM_DESC(X, S); ...@@ -63,7 +63,7 @@ MODULE_PARM_DESC(X, S);
/* Transmit Descriptor Count /* Transmit Descriptor Count
* *
* Valid Range: 80-256 for 82542 and 82543 gigabit ethernet controllers * Valid Range: 80-256 for 82542 and 82543 gigabit ethernet controllers
* Valid Range: 80-4096 for 82544 * Valid Range: 80-4096 for 82544 and newer
* *
* Default Value: 256 * Default Value: 256
*/ */
...@@ -73,7 +73,7 @@ E1000_PARAM(TxDescriptors, "Number of transmit descriptors"); ...@@ -73,7 +73,7 @@ E1000_PARAM(TxDescriptors, "Number of transmit descriptors");
/* Receive Descriptor Count /* Receive Descriptor Count
* *
* Valid Range: 80-256 for 82542 and 82543 gigabit ethernet controllers * Valid Range: 80-256 for 82542 and 82543 gigabit ethernet controllers
* Valid Range: 80-4096 for 82544 * Valid Range: 80-4096 for 82544 and newer
* *
* Default Value: 256 * Default Value: 256
*/ */
...@@ -289,7 +289,7 @@ static void e1000_check_copper_options(struct e1000_adapter *adapter); ...@@ -289,7 +289,7 @@ static void e1000_check_copper_options(struct e1000_adapter *adapter);
* e1000_check_options - Range Checking for Command Line Parameters * e1000_check_options - Range Checking for Command Line Parameters
* @adapter: board private structure * @adapter: board private structure
* *
* This routine checks all command line paramters for valid user * This routine checks all command line parameters for valid user
* input. If an invalid value is given, or if no user specified * input. If an invalid value is given, or if no user specified
* value exists, a default value is used. The final value is stored * value exists, a default value is used. The final value is stored
* in a variable in the adapter structure. * in a variable in the adapter structure.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment