From: Emil Goode Date: Fri, 14 Jun 2013 09:48:56 +0000 (+0200) Subject: ASoC: Fix double assignment of .owner in struct snd_soc_card X-Git-Tag: firefly_0821_release~176^2~5489^2~16^2~1^2~16^2 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=55dafe5dc29c1a8e9ac4a14c38f9550ec79524c9;p=firefly-linux-kernel-4.4.55.git 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 Signed-off-by: Mark Brown --- diff --git a/sound/soc/pxa/zylonite.c b/sound/soc/pxa/zylonite.c index ceb656695b0f..db8aadf8932d 100644 --- a/sound/soc/pxa/zylonite.c +++ b/sound/soc/pxa/zylonite.c @@ -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;