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
f6e2d606
Commit
f6e2d606
authored
Nov 14, 2004
by
Jeff Garzik
Committed by
Linus Torvalds
Nov 14, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[sound/oss i810_audio] use module_param()
Also, set MODULE_AUTHOR and correct module name in a macro.
parent
1fc697f9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
sound/oss/i810_audio.c
sound/oss/i810_audio.c
+6
-6
No files found.
sound/oss/i810_audio.c
View file @
f6e2d606
...
...
@@ -3460,15 +3460,15 @@ static int i810_pm_resume(struct pci_dev *dev)
}
#endif
/* CONFIG_PM */
MODULE_AUTHOR
(
""
);
MODULE_AUTHOR
(
"
The Linux kernel team
"
);
MODULE_DESCRIPTION
(
"Intel 810 audio support"
);
MODULE_LICENSE
(
"GPL"
);
MODULE_PARM
(
ftsodell
,
"i"
);
MODULE_PARM
(
clocking
,
"i"
);
MODULE_PARM
(
strict_clocking
,
"i"
);
MODULE_PARM
(
spdif_locked
,
"i"
);
module_param
(
ftsodell
,
int
,
0444
);
module_param
(
clocking
,
uint
,
0444
);
module_param
(
strict_clocking
,
int
,
0444
);
module_param
(
spdif_locked
,
int
,
0444
);
#define I810_MODULE_NAME "i
ntel
810_audio"
#define I810_MODULE_NAME "i810_audio"
static
struct
pci_driver
i810_pci_driver
=
{
.
name
=
I810_MODULE_NAME
,
...
...
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