diff options
author | Tom Rix <trix@redhat.com> | 2020-11-01 09:19:43 -0800 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2020-11-02 15:53:23 +0000 |
commit | c1af06a28a0176ceb1fc71408b32aabf53db4470 (patch) | |
tree | f08ca7d9186126660bd2e59bc9a1b1e87c9de9b8 /sound/soc/intel/catpt/pcm.c | |
parent | ff3cfccba4dd87bb89ca185b58b38b9a74260138 (diff) |
ASoC: Intel: remove unneeded semicolon
A semicolon is not needed after a switch statement.
Signed-off-by: Tom Rix <trix@redhat.com>
Acked-by: Cezary Rojewski <cezary.rojewski@intel.com>
Link: https://lore.kernel.org/r/20201101171943.2305030-1-trix@redhat.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/intel/catpt/pcm.c')
-rw-r--r-- | sound/soc/intel/catpt/pcm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/intel/catpt/pcm.c b/sound/soc/intel/catpt/pcm.c index ba653ebea7d1..1775540ac92b 100644 --- a/sound/soc/intel/catpt/pcm.c +++ b/sound/soc/intel/catpt/pcm.c @@ -92,7 +92,7 @@ catpt_get_stream_template(struct snd_pcm_substream *substream) break; default: break; - }; + } return catpt_topology[type]; } @@ -419,7 +419,7 @@ static int catpt_dai_apply_usettings(struct snd_soc_dai *dai, break; default: return 0; - }; + } list_for_each_entry(pos, &component->card->snd_card->controls, list) { if (pos->private_data == component && |