diff options
author | Yang Li <[email protected]> | 2021-02-01 16:01:21 +0800 |
---|---|---|
committer | Mark Brown <[email protected]> | 2021-02-03 16:23:09 +0000 |
commit | e01a03db74a88084fb91a4ff18bb8d47a1e12f62 (patch) | |
tree | 9710e42b21b1b3bb342ab2e5b891c4aed32d8626 | |
parent | be6be67e135e59fb176b1e2e9d47a7436fb161d1 (diff) |
ASoC: Intel: catpt: remove unneeded semicolon
Eliminate the following coccicheck warning:
./sound/soc/intel/catpt/pcm.c:355:2-3: Unneeded semicolon
Reported-by: Abaci Robot <[email protected]>
Signed-off-by: Yang Li <[email protected]>
Acked-by: Cezary Rojewski <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Mark Brown <[email protected]>
-rw-r--r-- | sound/soc/intel/catpt/pcm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/intel/catpt/pcm.c b/sound/soc/intel/catpt/pcm.c index 9d304b3a817f..ebb27daeb1c7 100644 --- a/sound/soc/intel/catpt/pcm.c +++ b/sound/soc/intel/catpt/pcm.c @@ -352,7 +352,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 && |