Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
8b21b305
Commit
8b21b305
authored
Feb 03, 2004
by
Scott Feldman
Committed by
Jeff Garzik
Feb 03, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[netdrvr e1000] Misc - copyright, changelog spelling
* Misc - copyright update, changelog, spelling fixes.
parent
82c76902
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
18 additions
and
13 deletions
+18
-13
drivers/net/e1000/e1000.h
drivers/net/e1000/e1000.h
+1
-1
drivers/net/e1000/e1000_ethtool.c
drivers/net/e1000/e1000_ethtool.c
+1
-1
drivers/net/e1000/e1000_hw.c
drivers/net/e1000/e1000_hw.c
+1
-1
drivers/net/e1000/e1000_hw.h
drivers/net/e1000/e1000_hw.h
+1
-1
drivers/net/e1000/e1000_main.c
drivers/net/e1000/e1000_main.c
+9
-4
drivers/net/e1000/e1000_osdep.h
drivers/net/e1000/e1000_osdep.h
+1
-1
drivers/net/e1000/e1000_param.c
drivers/net/e1000/e1000_param.c
+4
-4
No files found.
drivers/net/e1000/e1000.h
View file @
8b21b305
/*******************************************************************************
Copyright(c) 1999 - 200
3
Intel Corporation. All rights reserved.
Copyright(c) 1999 - 200
4
Intel Corporation. All rights reserved.
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
...
...
drivers/net/e1000/e1000_ethtool.c
View file @
8b21b305
/*******************************************************************************
Copyright(c) 1999 - 200
3
Intel Corporation. All rights reserved.
Copyright(c) 1999 - 200
4
Intel Corporation. All rights reserved.
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
...
...
drivers/net/e1000/e1000_hw.c
View file @
8b21b305
/*******************************************************************************
Copyright(c) 1999 - 200
3
Intel Corporation. All rights reserved.
Copyright(c) 1999 - 200
4
Intel Corporation. All rights reserved.
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
...
...
drivers/net/e1000/e1000_hw.h
View file @
8b21b305
/*******************************************************************************
Copyright(c) 1999 - 200
3
Intel Corporation. All rights reserved.
Copyright(c) 1999 - 200
4
Intel Corporation. All rights reserved.
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
...
...
drivers/net/e1000/e1000_main.c
View file @
8b21b305
/*******************************************************************************
Copyright(c) 1999 - 200
3
Intel Corporation. All rights reserved.
Copyright(c) 1999 - 200
4
Intel Corporation. All rights reserved.
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
...
...
@@ -30,7 +30,12 @@
/* 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 Fixed endianess bug causing ethtool loopback diags to fail on ppc.
* o Use pdev->irq rather than netdev->irq in preparation for MSI support.
...
...
@@ -63,8 +68,8 @@
char
e1000_driver_name
[]
=
"e1000"
;
char
e1000_driver_string
[]
=
"Intel(R) PRO/1000 Network Driver"
;
char
e1000_driver_version
[]
=
"5.2.
27
-k1"
;
char
e1000_copyright
[]
=
"Copyright (c) 1999-200
3
Intel Corporation."
;
char
e1000_driver_version
[]
=
"5.2.
30.1
-k1"
;
char
e1000_copyright
[]
=
"Copyright (c) 1999-200
4
Intel Corporation."
;
/* e1000_pci_tbl - PCI Device ID Table
*
...
...
drivers/net/e1000/e1000_osdep.h
View file @
8b21b305
/*******************************************************************************
Copyright(c) 1999 - 200
3
Intel Corporation. All rights reserved.
Copyright(c) 1999 - 200
4
Intel Corporation. All rights reserved.
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
...
...
drivers/net/e1000/e1000_param.c
View file @
8b21b305
/*******************************************************************************
Copyright(c) 1999 - 200
3
Intel Corporation. All rights reserved.
Copyright(c) 1999 - 200
4
Intel Corporation. All rights reserved.
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
...
...
@@ -63,7 +63,7 @@ MODULE_PARM_DESC(X, S);
/* Transmit Descriptor Count
*
* 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
*/
...
...
@@ -73,7 +73,7 @@ E1000_PARAM(TxDescriptors, "Number of transmit descriptors");
/* Receive Descriptor Count
*
* 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
*/
...
...
@@ -289,7 +289,7 @@ static void e1000_check_copper_options(struct e1000_adapter *adapter);
* e1000_check_options - Range Checking for Command Line Parameters
* @adapter: board private structure
*
* This routine checks all command line paramters for valid user
* This routine checks all command line param
e
ters for valid user
* input. If an invalid value is given, or if no user specified
* value exists, a default value is used. The final value is stored
* in a variable in the adapter structure.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment