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
96c45d92
Commit
96c45d92
authored
Jan 08, 2004
by
Jaroslav Kysela
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ALSA - added missing module_init and module_exit functions to cs8427 and ak4xxx modules
parent
adc349d9
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
37 additions
and
0 deletions
+37
-0
sound/i2c/cs8427.c
sound/i2c/cs8427.c
+13
-0
sound/i2c/other/ak4xxx-adda.c
sound/i2c/other/ak4xxx-adda.c
+12
-0
sound/pci/ice1712/ak4xxx.c
sound/pci/ice1712/ak4xxx.c
+12
-0
No files found.
sound/i2c/cs8427.c
View file @
96c45d92
...
@@ -23,6 +23,7 @@
...
@@ -23,6 +23,7 @@
#include <sound/driver.h>
#include <sound/driver.h>
#include <linux/slab.h>
#include <linux/slab.h>
#include <linux/delay.h>
#include <linux/delay.h>
#include <linux/init.h>
#include <sound/core.h>
#include <sound/core.h>
#include <sound/control.h>
#include <sound/control.h>
#include <sound/pcm.h>
#include <sound/pcm.h>
...
@@ -558,6 +559,18 @@ int snd_cs8427_iec958_pcm(snd_i2c_device_t *cs8427, unsigned int rate)
...
@@ -558,6 +559,18 @@ int snd_cs8427_iec958_pcm(snd_i2c_device_t *cs8427, unsigned int rate)
return
err
<
0
?
err
:
0
;
return
err
<
0
?
err
:
0
;
}
}
static
int
__init
alsa_cs8427_module_init
(
void
)
{
return
0
;
}
static
void
__exit
alsa_cs8427_module_exit
(
void
)
{
}
module_init
(
alsa_cs8427_module_init
)
module_exit
(
alsa_cs8427_module_exit
)
EXPORT_SYMBOL
(
snd_cs8427_detect
);
EXPORT_SYMBOL
(
snd_cs8427_detect
);
EXPORT_SYMBOL
(
snd_cs8427_create
);
EXPORT_SYMBOL
(
snd_cs8427_create
);
EXPORT_SYMBOL
(
snd_cs8427_reset
);
EXPORT_SYMBOL
(
snd_cs8427_reset
);
...
...
sound/i2c/other/ak4xxx-adda.c
View file @
96c45d92
...
@@ -445,6 +445,18 @@ int snd_akm4xxx_build_controls(akm4xxx_t *ak)
...
@@ -445,6 +445,18 @@ int snd_akm4xxx_build_controls(akm4xxx_t *ak)
return
0
;
return
0
;
}
}
static
int
__init
alsa_akm4xxx_module_init
(
void
)
{
return
0
;
}
static
void
__exit
alsa_akm4xxx_module_exit
(
void
)
{
}
module_init
(
alsa_akm4xxx_module_init
)
module_exit
(
alsa_akm4xxx_module_exit
)
EXPORT_SYMBOL
(
snd_akm4xxx_write
);
EXPORT_SYMBOL
(
snd_akm4xxx_write
);
EXPORT_SYMBOL
(
snd_akm4xxx_reset
);
EXPORT_SYMBOL
(
snd_akm4xxx_reset
);
EXPORT_SYMBOL
(
snd_akm4xxx_init
);
EXPORT_SYMBOL
(
snd_akm4xxx_init
);
...
...
sound/pci/ice1712/ak4xxx.c
View file @
96c45d92
...
@@ -175,6 +175,18 @@ int snd_ice1712_akm4xxx_build_controls(ice1712_t *ice)
...
@@ -175,6 +175,18 @@ int snd_ice1712_akm4xxx_build_controls(ice1712_t *ice)
return
0
;
return
0
;
}
}
static
int
__init
alsa_ice1712_akm4xxx_module_init
(
void
)
{
return
0
;
}
static
void
__exit
alsa_ice1712_akm4xxx_module_exit
(
void
)
{
}
module_init
(
alsa_ice1712_akm4xxx_module_init
)
module_exit
(
alsa_ice1712_akm4xxx_module_exit
)
EXPORT_SYMBOL
(
snd_ice1712_akm4xxx_init
);
EXPORT_SYMBOL
(
snd_ice1712_akm4xxx_init
);
EXPORT_SYMBOL
(
snd_ice1712_akm4xxx_free
);
EXPORT_SYMBOL
(
snd_ice1712_akm4xxx_free
);
EXPORT_SYMBOL
(
snd_ice1712_akm4xxx_build_controls
);
EXPORT_SYMBOL
(
snd_ice1712_akm4xxx_build_controls
);
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