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
507226e4
Commit
507226e4
authored
Apr 13, 2004
by
Jeff Garzik
Browse files
Options
Browse Files
Download
Plain Diff
Merge redhat.com:/spare/repo/netdev-2.6/tulip
into redhat.com:/spare/repo/net-drivers-2.6
parents
3b55888b
f85c9074
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
582 deletions
+8
-582
drivers/net/tulip/ChangeLog
drivers/net/tulip/ChangeLog
+0
-580
drivers/net/tulip/timer.c
drivers/net/tulip/timer.c
+7
-1
drivers/net/tulip/tulip_core.c
drivers/net/tulip/tulip_core.c
+1
-1
No files found.
drivers/net/tulip/ChangeLog
deleted
100644 → 0
View file @
3b55888b
This diff is collapsed.
Click to expand it.
drivers/net/tulip/timer.c
View file @
507226e4
...
...
@@ -159,10 +159,16 @@ void comet_timer(unsigned long data)
if
(
tulip_debug
>
1
)
printk
(
KERN_DEBUG
"%s: Comet link status %4.4x partner capability "
"%4.4x.
\n
"
,
dev
->
name
,
inl
(
ioaddr
+
0xB8
),
inl
(
ioaddr
+
0xC8
));
dev
->
name
,
tulip_mdio_read
(
dev
,
tp
->
phys
[
0
],
1
),
tulip_mdio_read
(
dev
,
tp
->
phys
[
0
],
5
));
/* mod_timer synchronizes us with potential add_timer calls
* from interrupts.
*/
if
(
tulip_check_duplex
(
dev
)
<
0
)
{
netif_carrier_off
(
dev
);
}
else
{
netif_carrier_on
(
dev
);
}
mod_timer
(
&
tp
->
timer
,
RUN_AT
(
next_tick
));
}
drivers/net/tulip/tulip_core.c
View file @
507226e4
...
...
@@ -178,7 +178,7 @@ struct tulip_chip_table tulip_tbl[] = {
/* COMET */
{
"ADMtek Comet"
,
256
,
0x0001abef
,
MC_HASH_ONLY
|
COMET_MAC_ADDR
,
comet_timer
},
HAS_MII
|
MC_HASH_ONLY
|
COMET_MAC_ADDR
,
comet_timer
},
/* COMPEX9881 */
{
"Compex 9881 PMAC"
,
128
,
0x0001ebef
,
...
...
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