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
8bf01d8a
Commit
8bf01d8a
authored
Jul 02, 2012
by
Takashi Iwai
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ALSA: Add missing .owner=THIS_MODULE to platform_driver definitions
Signed-off-by:
Takashi Iwai
<
tiwai@suse.de
>
parent
6887a413
Changes
13
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
24 additions
and
10 deletions
+24
-10
sound/atmel/abdac.c
sound/atmel/abdac.c
+1
-0
sound/atmel/ac97c.c
sound/atmel/ac97c.c
+1
-0
sound/drivers/aloop.c
sound/drivers/aloop.c
+2
-1
sound/drivers/dummy.c
sound/drivers/dummy.c
+2
-1
sound/drivers/mpu401/mpu401.c
sound/drivers/mpu401/mpu401.c
+2
-1
sound/drivers/mtpav.c
sound/drivers/mtpav.c
+2
-1
sound/drivers/mts64.c
sound/drivers/mts64.c
+2
-1
sound/drivers/portman2x4.c
sound/drivers/portman2x4.c
+2
-1
sound/drivers/serial-u16550.c
sound/drivers/serial-u16550.c
+2
-1
sound/drivers/virmidi.c
sound/drivers/virmidi.c
+2
-1
sound/ppc/powermac.c
sound/ppc/powermac.c
+2
-1
sound/sh/aica.c
sound/sh/aica.c
+3
-1
sound/sh/sh_dac_audio.c
sound/sh/sh_dac_audio.c
+1
-0
No files found.
sound/atmel/abdac.c
View file @
8bf01d8a
...
...
@@ -589,6 +589,7 @@ static struct platform_driver atmel_abdac_driver = {
.
remove
=
__devexit_p
(
atmel_abdac_remove
),
.
driver
=
{
.
name
=
"atmel_abdac"
,
.
owner
=
THIS_MODULE
,
},
.
suspend
=
atmel_abdac_suspend
,
.
resume
=
atmel_abdac_resume
,
...
...
sound/atmel/ac97c.c
View file @
8bf01d8a
...
...
@@ -1210,6 +1210,7 @@ static struct platform_driver atmel_ac97c_driver = {
.
remove
=
__devexit_p
(
atmel_ac97c_remove
),
.
driver
=
{
.
name
=
"atmel_ac97c"
,
.
owner
=
THIS_MODULE
,
},
.
suspend
=
atmel_ac97c_suspend
,
.
resume
=
atmel_ac97c_resume
,
...
...
sound/drivers/aloop.c
View file @
8bf01d8a
...
...
@@ -1209,7 +1209,8 @@ static struct platform_driver loopback_driver = {
.
resume
=
loopback_resume
,
#endif
.
driver
=
{
.
name
=
SND_LOOPBACK_DRIVER
.
name
=
SND_LOOPBACK_DRIVER
,
.
owner
=
THIS_MODULE
,
},
};
...
...
sound/drivers/dummy.c
View file @
8bf01d8a
...
...
@@ -1094,7 +1094,8 @@ static struct platform_driver snd_dummy_driver = {
.
resume
=
snd_dummy_resume
,
#endif
.
driver
=
{
.
name
=
SND_DUMMY_DRIVER
.
name
=
SND_DUMMY_DRIVER
,
.
owner
=
THIS_MODULE
,
},
};
...
...
sound/drivers/mpu401/mpu401.c
View file @
8bf01d8a
...
...
@@ -139,7 +139,8 @@ static struct platform_driver snd_mpu401_driver = {
.
probe
=
snd_mpu401_probe
,
.
remove
=
__devexit_p
(
snd_mpu401_remove
),
.
driver
=
{
.
name
=
SND_MPU401_DRIVER
.
name
=
SND_MPU401_DRIVER
,
.
owner
=
THIS_MODULE
,
},
};
...
...
sound/drivers/mtpav.c
View file @
8bf01d8a
...
...
@@ -759,7 +759,8 @@ static struct platform_driver snd_mtpav_driver = {
.
probe
=
snd_mtpav_probe
,
.
remove
=
__devexit_p
(
snd_mtpav_remove
),
.
driver
=
{
.
name
=
SND_MTPAV_DRIVER
.
name
=
SND_MTPAV_DRIVER
,
.
owner
=
THIS_MODULE
,
},
};
...
...
sound/drivers/mts64.c
View file @
8bf01d8a
...
...
@@ -1040,7 +1040,8 @@ static struct platform_driver snd_mts64_driver = {
.
probe
=
snd_mts64_probe
,
.
remove
=
__devexit_p
(
snd_mts64_remove
),
.
driver
=
{
.
name
=
PLATFORM_DRIVER
.
name
=
PLATFORM_DRIVER
,
.
owner
=
THIS_MODULE
,
}
};
...
...
sound/drivers/portman2x4.c
View file @
8bf01d8a
...
...
@@ -829,7 +829,8 @@ static struct platform_driver snd_portman_driver = {
.
probe
=
snd_portman_probe
,
.
remove
=
__devexit_p
(
snd_portman_remove
),
.
driver
=
{
.
name
=
PLATFORM_DRIVER
.
name
=
PLATFORM_DRIVER
,
.
owner
=
THIS_MODULE
,
}
};
...
...
sound/drivers/serial-u16550.c
View file @
8bf01d8a
...
...
@@ -995,7 +995,8 @@ static struct platform_driver snd_serial_driver = {
.
probe
=
snd_serial_probe
,
.
remove
=
__devexit_p
(
snd_serial_remove
),
.
driver
=
{
.
name
=
SND_SERIAL_DRIVER
.
name
=
SND_SERIAL_DRIVER
,
.
owner
=
THIS_MODULE
,
},
};
...
...
sound/drivers/virmidi.c
View file @
8bf01d8a
...
...
@@ -142,7 +142,8 @@ static struct platform_driver snd_virmidi_driver = {
.
probe
=
snd_virmidi_probe
,
.
remove
=
__devexit_p
(
snd_virmidi_remove
),
.
driver
=
{
.
name
=
SND_VIRMIDI_DRIVER
.
name
=
SND_VIRMIDI_DRIVER
,
.
owner
=
THIS_MODULE
,
},
};
...
...
sound/ppc/powermac.c
View file @
8bf01d8a
...
...
@@ -169,7 +169,8 @@ static struct platform_driver snd_pmac_driver = {
.
resume
=
snd_pmac_driver_resume
,
#endif
.
driver
=
{
.
name
=
SND_PMAC_DRIVER
.
name
=
SND_PMAC_DRIVER
,
.
owner
=
THIS_MODULE
,
},
};
...
...
sound/sh/aica.c
View file @
8bf01d8a
...
...
@@ -654,7 +654,9 @@ static struct platform_driver snd_aica_driver = {
.
probe
=
snd_aica_probe
,
.
remove
=
__devexit_p
(
snd_aica_remove
),
.
driver
=
{
.
name
=
SND_AICA_DRIVER
},
.
name
=
SND_AICA_DRIVER
,
.
owner
=
THIS_MODULE
,
},
};
static
int
__init
aica_init
(
void
)
...
...
sound/sh/sh_dac_audio.c
View file @
8bf01d8a
...
...
@@ -438,6 +438,7 @@ static struct platform_driver sh_dac_driver = {
.
remove
=
snd_sh_dac_remove
,
.
driver
=
{
.
name
=
"dac_audio"
,
.
owner
=
THIS_MODULE
,
},
};
...
...
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