2
0
mirror of https://github.com/edk2-porting/linux-next.git synced 2024-12-16 09:13:55 +08:00

ASoC: Fix double assignment of .owner in struct snd_soc_card

In struct snd_soc_card zylonite .owner is assigned THIS_MODULE
twice, remove one of them.

Signed-off-by: Emil Goode <emilgoode@gmail.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
This commit is contained in:
Emil Goode 2013-06-14 11:48:56 +02:00 committed by Mark Brown
parent 7ae6871fe5
commit 55dafe5dc2

View File

@ -256,7 +256,6 @@ static struct snd_soc_card zylonite = {
.resume_pre = &zylonite_resume_pre,
.dai_link = zylonite_dai,
.num_links = ARRAY_SIZE(zylonite_dai),
.owner = THIS_MODULE,
};
static struct platform_device *zylonite_snd_ac97_device;