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
ad6a9984
Commit
ad6a9984
authored
May 25, 2005
by
Committed by
Jeff Garzik
May 25, 2005
Browse files
Options
Browse Files
Download
Plain Diff
Automatic merge of /spare/repo/netdev-2.6 branch tlan
parents
38778204
562faf46
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
0 deletions
+12
-0
drivers/net/tlan.c
drivers/net/tlan.c
+12
-0
No files found.
drivers/net/tlan.c
View file @
ad6a9984
...
@@ -193,6 +193,12 @@ static int aui[MAX_TLAN_BOARDS];
...
@@ -193,6 +193,12 @@ static int aui[MAX_TLAN_BOARDS];
static
int
duplex
[
MAX_TLAN_BOARDS
];
static
int
duplex
[
MAX_TLAN_BOARDS
];
static
int
speed
[
MAX_TLAN_BOARDS
];
static
int
speed
[
MAX_TLAN_BOARDS
];
static
int
boards_found
;
static
int
boards_found
;
module_param_array
(
aui
,
int
,
NULL
,
0
);
module_param_array
(
duplex
,
int
,
NULL
,
0
);
module_param_array
(
speed
,
int
,
NULL
,
0
);
MODULE_PARM_DESC
(
aui
,
"ThunderLAN use AUI port(s) (0-1)"
);
MODULE_PARM_DESC
(
duplex
,
"ThunderLAN duplex setting(s) (0-default, 1-half, 2-full)"
);
MODULE_PARM_DESC
(
speed
,
"ThunderLAN port speen setting(s) (0,10,100)"
);
MODULE_AUTHOR
(
"Maintainer: Samuel Chessman <chessman@tux.org>"
);
MODULE_AUTHOR
(
"Maintainer: Samuel Chessman <chessman@tux.org>"
);
MODULE_DESCRIPTION
(
"Driver for TI ThunderLAN based ethernet PCI adapters"
);
MODULE_DESCRIPTION
(
"Driver for TI ThunderLAN based ethernet PCI adapters"
);
...
@@ -204,8 +210,13 @@ MODULE_LICENSE("GPL");
...
@@ -204,8 +210,13 @@ MODULE_LICENSE("GPL");
/* Turn on debugging. See Documentation/networking/tlan.txt for details */
/* Turn on debugging. See Documentation/networking/tlan.txt for details */
static
int
debug
;
static
int
debug
;
module_param
(
debug
,
int
,
0
);
MODULE_PARM_DESC
(
debug
,
"ThunderLAN debug mask"
);
static
int
bbuf
;
static
int
bbuf
;
module_param
(
bbuf
,
int
,
0
);
MODULE_PARM_DESC
(
bbuf
,
"ThunderLAN use big buffer (0-1)"
);
static
u8
*
TLanPadBuffer
;
static
u8
*
TLanPadBuffer
;
static
dma_addr_t
TLanPadBufferDMA
;
static
dma_addr_t
TLanPadBufferDMA
;
static
char
TLanSignature
[]
=
"TLAN"
;
static
char
TLanSignature
[]
=
"TLAN"
;
...
@@ -2381,6 +2392,7 @@ TLan_FinishReset( struct net_device *dev )
...
@@ -2381,6 +2392,7 @@ TLan_FinishReset( struct net_device *dev )
TLan_SetTimer
(
dev
,
(
10
*
HZ
),
TLAN_TIMER_FINISH_RESET
);
TLan_SetTimer
(
dev
,
(
10
*
HZ
),
TLAN_TIMER_FINISH_RESET
);
return
;
return
;
}
}
TLan_SetMulticastList
(
dev
);
}
/* TLan_FinishReset */
}
/* TLan_FinishReset */
...
...
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