From: Axel Lin Date: Fri, 23 Dec 2011 06:54:30 +0000 (+0800) Subject: ASoC: txx9: Add .owner to struct snd_soc_card X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=e181d14ac3f304086e41f8e6601f0bd3c75570b2;p=linux-beck.git ASoC: txx9: 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 Signed-off-by: Axel Lin Signed-off-by: Mark Brown --- diff --git a/sound/soc/txx9/txx9aclc-generic.c b/sound/soc/txx9/txx9aclc-generic.c index 9b5e283af51c..b056a1431ed4 100644 --- a/sound/soc/txx9/txx9aclc-generic.c +++ b/sound/soc/txx9/txx9aclc-generic.c @@ -32,6 +32,7 @@ static struct snd_soc_dai_link txx9aclc_generic_dai = { static struct snd_soc_card txx9aclc_generic_card = { .name = "Generic TXx9 ACLC Audio", + .owner = THIS_MODULE, .dai_link = &txx9aclc_generic_dai, .num_links = 1, };