diff options
author | Takashi Iwai <tiwai@suse.de> | 2012-07-02 04:50:24 -0400 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2012-07-02 11:50:05 -0400 |
commit | 8bf01d8abc55eaf8e19a2d48911c8e49ee6f5bab (patch) | |
tree | dc3132542b15d3cbc9f573801b730afb02d6c346 /sound/sh | |
parent | 6887a4131da3adaab011613776d865f4bcfb5678 (diff) |
ALSA: Add missing .owner=THIS_MODULE to platform_driver definitions
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/sh')
-rw-r--r-- | sound/sh/aica.c | 4 | ||||
-rw-r--r-- | sound/sh/sh_dac_audio.c | 1 |
2 files changed, 4 insertions, 1 deletions
diff --git a/sound/sh/aica.c b/sound/sh/aica.c index 391a38ca58bc..d48b523207eb 100644 --- a/sound/sh/aica.c +++ b/sound/sh/aica.c | |||
@@ -654,7 +654,9 @@ static struct platform_driver snd_aica_driver = { | |||
654 | .probe = snd_aica_probe, | 654 | .probe = snd_aica_probe, |
655 | .remove = __devexit_p(snd_aica_remove), | 655 | .remove = __devexit_p(snd_aica_remove), |
656 | .driver = { | 656 | .driver = { |
657 | .name = SND_AICA_DRIVER}, | 657 | .name = SND_AICA_DRIVER, |
658 | .owner = THIS_MODULE, | ||
659 | }, | ||
658 | }; | 660 | }; |
659 | 661 | ||
660 | static int __init aica_init(void) | 662 | static int __init aica_init(void) |
diff --git a/sound/sh/sh_dac_audio.c b/sound/sh/sh_dac_audio.c index f8b01c77b298..0a3394751ed2 100644 --- a/sound/sh/sh_dac_audio.c +++ b/sound/sh/sh_dac_audio.c | |||
@@ -438,6 +438,7 @@ static struct platform_driver sh_dac_driver = { | |||
438 | .remove = snd_sh_dac_remove, | 438 | .remove = snd_sh_dac_remove, |
439 | .driver = { | 439 | .driver = { |
440 | .name = "dac_audio", | 440 | .name = "dac_audio", |
441 | .owner = THIS_MODULE, | ||
441 | }, | 442 | }, |
442 | }; | 443 | }; |
443 | 444 | ||