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
nexedi
linux
Commits
d38e8d6e
Commit
d38e8d6e
authored
Jul 29, 2004
by
Ganesh Venkatesan
Committed by
Jeff Garzik
Jul 29, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] e100 - Support for Intel(R) PRO/100 VE Network Connection (82562) adapter
parent
97ae7a65
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
drivers/net/e100.c
drivers/net/e100.c
+4
-1
No files found.
drivers/net/e100.c
View file @
d38e8d6e
...
...
@@ -201,6 +201,8 @@ static struct pci_device_id e100_id_table[] = {
INTEL_8255X_ETHERNET_DEVICE
(
0x1053
,
5
),
INTEL_8255X_ETHERNET_DEVICE
(
0x1054
,
5
),
INTEL_8255X_ETHERNET_DEVICE
(
0x1055
,
5
),
INTEL_8255X_ETHERNET_DEVICE
(
0x1056
,
5
),
INTEL_8255X_ETHERNET_DEVICE
(
0x1057
,
5
),
INTEL_8255X_ETHERNET_DEVICE
(
0x1064
,
6
),
INTEL_8255X_ETHERNET_DEVICE
(
0x1065
,
6
),
INTEL_8255X_ETHERNET_DEVICE
(
0x1066
,
6
),
...
...
@@ -242,6 +244,7 @@ enum phy {
phy_nsc_tx
=
0x5C002000
,
phy_82562_et
=
0x033002A8
,
phy_82562_em
=
0x032002A8
,
phy_82562_ek
=
0x031002A8
,
phy_82562_eh
=
0x017002A8
,
phy_unknown
=
0xFFFFFFFF
,
};
...
...
@@ -1641,7 +1644,7 @@ static int e100_change_mtu(struct net_device *netdev, int new_mtu)
static
int
e100_asf
(
struct
nic
*
nic
)
{
/* ASF can be enabled from eeprom */
return
((
nic
->
pdev
->
device
>=
0x1050
)
&&
(
nic
->
pdev
->
device
<=
0x105
5
)
&&
return
((
nic
->
pdev
->
device
>=
0x1050
)
&&
(
nic
->
pdev
->
device
<=
0x105
7
)
&&
(
nic
->
eeprom
[
eeprom_config_asf
]
&
eeprom_asf
)
&&
!
(
nic
->
eeprom
[
eeprom_config_asf
]
&
eeprom_gcl
)
&&
((
nic
->
eeprom
[
eeprom_smbus_addr
]
&
0xFF
)
!=
0xFE
));
...
...
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