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-Tag: v3.3-rc1~14^2~78 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e181d14ac3f304086e41f8e6601f0bd3c75570b2;p=profile%2Fcommon%2Fkernel-common.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 9b5e283..b056a14 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, };