Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci
Commits
435b70e6
Commit
435b70e6
authored
Sep 12, 2006
by
Jeff Garzik
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'upstream-fixes' into upstream
parents
4e83b7fa
6a951698
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
drivers/net/e1000/e1000_main.c
drivers/net/e1000/e1000_main.c
+4
-4
No files found.
drivers/net/e1000/e1000_main.c
View file @
435b70e6
...
...
@@ -1467,8 +1467,8 @@ e1000_configure_tx(struct e1000_adapter *adapter)
E1000_WRITE_REG
(
hw
,
TDBAL
,
(
tdba
&
0x00000000ffffffffULL
));
E1000_WRITE_REG
(
hw
,
TDT
,
0
);
E1000_WRITE_REG
(
hw
,
TDH
,
0
);
adapter
->
tx_ring
[
0
].
tdh
=
E1000_TDH
;
adapter
->
tx_ring
[
0
].
tdt
=
E1000_TDT
;
adapter
->
tx_ring
[
0
].
tdh
=
((
hw
->
mac_type
>=
e1000_82543
)
?
E1000_TDH
:
E1000_82542_TDH
)
;
adapter
->
tx_ring
[
0
].
tdt
=
((
hw
->
mac_type
>=
e1000_82543
)
?
E1000_TDT
:
E1000_82542_TDT
)
;
break
;
}
...
...
@@ -1871,8 +1871,8 @@ e1000_configure_rx(struct e1000_adapter *adapter)
E1000_WRITE_REG
(
hw
,
RDBAL
,
(
rdba
&
0x00000000ffffffffULL
));
E1000_WRITE_REG
(
hw
,
RDT
,
0
);
E1000_WRITE_REG
(
hw
,
RDH
,
0
);
adapter
->
rx_ring
[
0
].
rdh
=
E1000_RDH
;
adapter
->
rx_ring
[
0
].
rdt
=
E1000_RDT
;
adapter
->
rx_ring
[
0
].
rdh
=
((
hw
->
mac_type
>=
e1000_82543
)
?
E1000_RDH
:
E1000_82542_RDH
)
;
adapter
->
rx_ring
[
0
].
rdt
=
((
hw
->
mac_type
>=
e1000_82543
)
?
E1000_RDT
:
E1000_82542_RDT
)
;
break
;
}
...
...
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