ASoC: samsung: tm2_wm5110: remove shadowed variable
cppcheck warning: sound/soc/samsung/tm2_wm5110.c:552:26: style: Local variable 'args' shadows outer variable [shadowVariable] struct of_phandle_args args; ^ sound/soc/samsung/tm2_wm5110.c:504:25: note: Shadowed declaration struct of_phandle_args args; ^ sound/soc/samsung/tm2_wm5110.c:552:26: note: Shadow variable struct of_phandle_args args; ^ Move the top-level variable to the lower scope where it's needed. Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com> Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com> Link: https://lore.kernel.org/r/20210312180231.2741-3-pierre-louis.bossart@linux.intel.com Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
d58970da32
commit
f7b61287cf
|
@ -501,7 +501,6 @@ static int tm2_probe(struct platform_device *pdev)
|
||||||
struct device *dev = &pdev->dev;
|
struct device *dev = &pdev->dev;
|
||||||
struct snd_soc_card *card = &tm2_card;
|
struct snd_soc_card *card = &tm2_card;
|
||||||
struct tm2_machine_priv *priv;
|
struct tm2_machine_priv *priv;
|
||||||
struct of_phandle_args args;
|
|
||||||
struct snd_soc_dai_link *dai_link;
|
struct snd_soc_dai_link *dai_link;
|
||||||
int num_codecs, ret, i;
|
int num_codecs, ret, i;
|
||||||
|
|
||||||
|
@ -585,6 +584,8 @@ static int tm2_probe(struct platform_device *pdev)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (num_codecs > 1) {
|
if (num_codecs > 1) {
|
||||||
|
struct of_phandle_args args;
|
||||||
|
|
||||||
/* HDMI DAI link (I2S1) */
|
/* HDMI DAI link (I2S1) */
|
||||||
i = card->num_links - 1;
|
i = card->num_links - 1;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue