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
35168d7a
Commit
35168d7a
authored
Dec 07, 2004
by
Jeff Garzik
Browse files
Options
Browse Files
Download
Plain Diff
Merge pobox.com:/garz/repo/linux-2.6 into pobox.com:/garz/repo/misc-2.6
parents
6695ad97
95bbe328
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
12 deletions
+12
-12
sound/oss/i810_audio.c
sound/oss/i810_audio.c
+6
-6
sound/oss/soundcard.c
sound/oss/soundcard.c
+2
-2
sound/oss/uart401.c
sound/oss/uart401.c
+4
-4
No files found.
sound/oss/i810_audio.c
View file @
35168d7a
...
...
@@ -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
,
...
...
sound/oss/soundcard.c
View file @
35168d7a
...
...
@@ -535,8 +535,8 @@ static const struct {
static
int
dmabuf
;
static
int
dmabug
;
MODULE_PARM
(
dmabuf
,
"i"
);
MODULE_PARM
(
dmabug
,
"i"
);
module_param
(
dmabuf
,
int
,
0444
);
module_param
(
dmabug
,
int
,
0444
);
static
int
__init
oss_init
(
void
)
{
...
...
sound/oss/uart401.c
View file @
35168d7a
...
...
@@ -430,11 +430,11 @@ EXPORT_SYMBOL(uart401intr);
static
struct
address_info
cfg_mpu
;
static
int
__initdata
io
=
-
1
;
static
int
__initdata
irq
=
-
1
;
static
int
io
=
-
1
;
static
int
irq
=
-
1
;
MODULE_PARM
(
io
,
"i"
);
MODULE_PARM
(
irq
,
"i"
);
module_param
(
io
,
int
,
0444
);
module_param
(
irq
,
int
,
0444
);
static
int
__init
init_uart401
(
void
)
...
...
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