From: Amadeusz Sławiński Date: Wed, 15 Apr 2020 16:24:34 +0000 (-0400) Subject: ASoC: topology: Remove unneeded semicolon X-Git-Tag: v5.8-rc1~47^2^2~176 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=980f91778a2f4dcca43d16b7a83feda8df5c96e7;p=thirdparty%2Flinux.git ASoC: topology: Remove unneeded semicolon There is unnecessary semicolon after last bracket of if statement, remove it. Signed-off-by: Amadeusz Sławiński Link: https://lore.kernel.org/r/20200415162435.31859-1-amadeuszx.slawinski@linux.intel.com Signed-off-by: Mark Brown --- diff --git a/sound/soc/soc-topology.c b/sound/soc/soc-topology.c index 33e8d189ba2f6..a5cd73742dc53 100644 --- a/sound/soc/soc-topology.c +++ b/sound/soc/soc-topology.c @@ -2390,7 +2390,7 @@ static int soc_tplg_link_elems_load(struct soc_tplg *tplg, tplg->pos += le32_to_cpu(hdr->size) + le32_to_cpu(hdr->payload_size); return 0; - }; + } /* check the element size and count */ link = (struct snd_soc_tplg_link_config *)tplg->pos;