diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2021-08-05 10:10:55 +0900 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2021-08-05 15:37:28 +0100 |
commit | 7453d6d45d5587d3d4d4fdaec746db74ac5f7429 (patch) | |
tree | 3bf619e95bddb9a0e58db15a8b2659a281e9b159 /sound/soc/soc-dapm.c | |
parent | f2553d46783409656d82e46913354ed0c058cc0c (diff) | |
download | lwn-7453d6d45d5587d3d4d4fdaec746db74ac5f7429.tar.gz lwn-7453d6d45d5587d3d4d4fdaec746db74ac5f7429.zip |
ASoC: soc-dapm: cleanup cppcheck warning at dapm_wcache_lookup()
This patch cleanups below cppcheck warning.
sound/soc/soc-dapm.c:653:20: style: The scope of the variable 'wlist' can be reduced. [variableScope]
struct list_head *wlist;
^
sound/soc/soc-dapm.c:655:6: style: The scope of the variable 'i' can be reduced. [variableScope]
int i = 0;
^
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Link: https://lore.kernel.org/r/87y29gu25d.wl-kuninori.morimoto.gx@renesas.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/soc-dapm.c')
-rw-r--r-- | sound/soc/soc-dapm.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/sound/soc/soc-dapm.c b/sound/soc/soc-dapm.c index 91bf939d5233..92193e9e1084 100644 --- a/sound/soc/soc-dapm.c +++ b/sound/soc/soc-dapm.c @@ -650,12 +650,11 @@ static struct snd_soc_dapm_widget * dapm_wcache_lookup(struct snd_soc_dapm_wcache *wcache, const char *name) { struct snd_soc_dapm_widget *w = wcache->widget; - struct list_head *wlist; - const int depth = 2; - int i = 0; if (w) { - wlist = &w->dapm->card->widgets; + struct list_head *wlist = &w->dapm->card->widgets; + const int depth = 2; + int i = 0; list_for_each_entry_from(w, wlist, list) { if (!strcmp(name, w->name)) |