diff options
author | Takashi Iwai <tiwai@suse.de> | 2012-07-02 10:50:24 +0200 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2012-07-02 17:50:05 +0200 |
commit | 8bf01d8abc55eaf8e19a2d48911c8e49ee6f5bab (patch) | |
tree | dc3132542b15d3cbc9f573801b730afb02d6c346 /sound/sh/aica.c | |
parent | 6887a4131da3adaab011613776d865f4bcfb5678 (diff) | |
download | op-kernel-dev-8bf01d8abc55eaf8e19a2d48911c8e49ee6f5bab.zip op-kernel-dev-8bf01d8abc55eaf8e19a2d48911c8e49ee6f5bab.tar.gz |
ALSA: Add missing .owner=THIS_MODULE to platform_driver definitions
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/sh/aica.c')
-rw-r--r-- | sound/sh/aica.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sound/sh/aica.c b/sound/sh/aica.c index 391a38c..d48b523 100644 --- a/sound/sh/aica.c +++ b/sound/sh/aica.c @@ -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) |