diff options
author | Axel Lin <axel.lin@gmail.com> | 2011-12-23 14:53:32 +0800 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2011-12-23 11:32:07 +0000 |
commit | 4a7042e59908231fc046aac88bd98454d886052d (patch) | |
tree | 34799035a4288be3c32d4b20328b68cb13ab3d67 /sound/soc/sh/sh7760-ac97.c | |
parent | 23bd1ce48f0b2721f0f37087d8acd9fe57f895d7 (diff) | |
download | linux-rt-4a7042e59908231fc046aac88bd98454d886052d.tar.gz |
ASoC: sh: 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/sh/sh7760-ac97.c')
-rw-r--r-- | sound/soc/sh/sh7760-ac97.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/soc/sh/sh7760-ac97.c b/sound/soc/sh/sh7760-ac97.c index df651e8e38de..4a3568a9bf59 100644 --- a/sound/soc/sh/sh7760-ac97.c +++ b/sound/soc/sh/sh7760-ac97.c @@ -28,6 +28,7 @@ static struct snd_soc_dai_link sh7760_ac97_dai = { static struct snd_soc_card sh7760_ac97_soc_machine = { .name = "SH7760 AC97", + .owner = THIS_MODULE, .dai_link = &sh7760_ac97_dai, .num_links = 1, }; |