From: Kuninori Morimoto Date: Thu, 5 Aug 2021 01:11:44 +0000 (+0900) Subject: ASoC: soc-dapm: cleanup cppcheck warning at soc_dapm_dai_stream_event() X-Git-Tag: v5.15-rc1~36^2^2~61^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f2ff5fbe343d08e880fb1d10dbbdc335a3ceca4b;p=thirdparty%2Flinux.git ASoC: soc-dapm: cleanup cppcheck warning at soc_dapm_dai_stream_event() This patch cleanups below cppcheck warning. sound/soc/soc-dapm.c:4368:15: style: The scope of the variable 'ep' can be reduced. [variableScope] unsigned int ep; ^ Signed-off-by: Kuninori Morimoto Link: https://lore.kernel.org/r/87im0ku23z.wl-kuninori.morimoto.gx@renesas.com Signed-off-by: Mark Brown --- diff --git a/sound/soc/soc-dapm.c b/sound/soc/soc-dapm.c index 7fc1659eead49..7b67f1e19ae95 100644 --- a/sound/soc/soc-dapm.c +++ b/sound/soc/soc-dapm.c @@ -4365,11 +4365,12 @@ static void soc_dapm_dai_stream_event(struct snd_soc_dai *dai, int stream, int event) { struct snd_soc_dapm_widget *w; - unsigned int ep; w = snd_soc_dai_get_widget(dai, stream); if (w) { + unsigned int ep; + dapm_mark_dirty(w, "stream event"); if (w->id == snd_soc_dapm_dai_in) {