diff options
author | Amadeusz Sławiński <amadeuszx.slawinski@linux.intel.com> | 2020-04-15 12:24:34 -0400 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2020-04-15 18:15:16 +0100 |
commit | 980f91778a2f4dcca43d16b7a83feda8df5c96e7 (patch) | |
tree | 2551cc8817b70842f1e3477243b3a8b877bb2753 /sound/soc/soc-topology.c | |
parent | 83b35f4586e235bfb785a7947b555ad8f3d96887 (diff) | |
download | linux-stable-980f91778a2f4dcca43d16b7a83feda8df5c96e7.tar.gz linux-stable-980f91778a2f4dcca43d16b7a83feda8df5c96e7.tar.bz2 linux-stable-980f91778a2f4dcca43d16b7a83feda8df5c96e7.zip |
ASoC: topology: Remove unneeded semicolon
There is unnecessary semicolon after last bracket of if statement,
remove it.
Signed-off-by: Amadeusz Sławiński <amadeuszx.slawinski@linux.intel.com>
Link: https://lore.kernel.org/r/20200415162435.31859-1-amadeuszx.slawinski@linux.intel.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/soc-topology.c')
-rw-r--r-- | sound/soc/soc-topology.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/soc-topology.c b/sound/soc/soc-topology.c index 33e8d189ba2f..a5cd73742dc5 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; |