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
c063385d
Commit
c063385d
authored
Jan 06, 2005
by
David Dillow
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use module_param() and add descriptions.
Signed-off-by:
David Dillow
<
dave@thedillows.org
>
parent
d4b924d6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
2 deletions
+8
-2
drivers/net/typhoon.c
drivers/net/typhoon.c
+8
-2
No files found.
drivers/net/typhoon.c
View file @
c063385d
...
...
@@ -138,10 +138,16 @@ static char version[] __devinitdata =
"typhoon.c: version "
DRV_MODULE_VERSION
" ("
DRV_MODULE_RELDATE
")
\n
"
;
MODULE_AUTHOR
(
"David Dillow <dave@thedillows.org>"
);
MODULE_VERSION
(
DRV_MODULE_VERSION
);
MODULE_LICENSE
(
"GPL"
);
MODULE_DESCRIPTION
(
"3Com Typhoon Family (3C990, 3CR990, and variants)"
);
MODULE_PARM
(
rx_copybreak
,
"i"
);
MODULE_PARM
(
use_mmio
,
"i"
);
MODULE_PARM_DESC
(
rx_copybreak
,
"Packets smaller than this are copied and "
"the buffer given back to the NIC. Default "
"is 200."
);
MODULE_PARM_DESC
(
use_mmio
,
"Use MMIO (1) or PIO(0) to access the NIC. "
"Default is to try MMIO and fallback to PIO."
);
module_param
(
rx_copybreak
,
int
,
0
);
module_param
(
use_mmio
,
int
,
0
);
#if defined(NETIF_F_TSO) && MAX_SKB_FRAGS > 32
#warning Typhoon only supports 32 entries in its SG list for TSO, disabling TSO
...
...
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