summaryrefslogtreecommitdiff
path: root/sound/ppc
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2012-07-02 10:50:24 +0200
committerTakashi Iwai <tiwai@suse.de>2012-07-02 17:50:05 +0200
commit8bf01d8abc55eaf8e19a2d48911c8e49ee6f5bab (patch)
treedc3132542b15d3cbc9f573801b730afb02d6c346 /sound/ppc
parent6887a4131da3adaab011613776d865f4bcfb5678 (diff)
ALSA: Add missing .owner=THIS_MODULE to platform_driver definitions
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/ppc')
-rw-r--r--sound/ppc/powermac.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sound/ppc/powermac.c b/sound/ppc/powermac.c
index 5a4e263b5b0f..aef54beaf8b7 100644
--- a/sound/ppc/powermac.c
+++ b/sound/ppc/powermac.c
@@ -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,
},
};