summaryrefslogtreecommitdiff
path: root/sound/soc/kirkwood
diff options
context:
space:
mode:
authorAxel Lin <axel.lin@gmail.com>2011-12-23 06:49:28 (GMT)
committerMark Brown <broonie@opensource.wolfsonmicro.com>2011-12-23 11:32:09 (GMT)
commit9b344ce80f8bdf5887d9b5f6d9566d336a8c6ab9 (patch)
tree1e1fe8332a6c390f1d93156940d45b4b7fa6744e /sound/soc/kirkwood
parente181d14ac3f304086e41f8e6601f0bd3c75570b2 (diff)
downloadlinux-fsl-qoriq-9b344ce80f8bdf5887d9b5f6d9566d336a8c6ab9.tar.xz
ASoC: kirkwood: Add .owner to struct snd_soc_card
Add missing .owner of struct snd_soc_card. This prevents the module from being removed from underneath its users. Reported-by: Lothar Waßmann <LW@KARO-electronics.de> Signed-off-by: Axel Lin <axel.lin@gmail.com> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound/soc/kirkwood')
-rw-r--r--sound/soc/kirkwood/kirkwood-openrd.c1
-rw-r--r--sound/soc/kirkwood/kirkwood-t5325.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/sound/soc/kirkwood/kirkwood-openrd.c b/sound/soc/kirkwood/kirkwood-openrd.c
index d863afb..8a5a3dd 100644
--- a/sound/soc/kirkwood/kirkwood-openrd.c
+++ b/sound/soc/kirkwood/kirkwood-openrd.c
@@ -76,6 +76,7 @@ static struct snd_soc_dai_link openrd_client_dai[] = {
static struct snd_soc_card openrd_client = {
.name = "OpenRD Client",
+ .owner = THIS_MODULE,
.dai_link = openrd_client_dai,
.num_links = ARRAY_SIZE(openrd_client_dai),
};
diff --git a/sound/soc/kirkwood/kirkwood-t5325.c b/sound/soc/kirkwood/kirkwood-t5325.c
index c772b3c..a8930c7 100644
--- a/sound/soc/kirkwood/kirkwood-t5325.c
+++ b/sound/soc/kirkwood/kirkwood-t5325.c
@@ -98,6 +98,7 @@ static struct snd_soc_dai_link t5325_dai[] = {
static struct snd_soc_card t5325 = {
.name = "t5325",
+ .owner = THIS_MODULE,
.dai_link = t5325_dai,
.num_links = ARRAY_SIZE(t5325_dai),
};