diff options
author | Yang Li <yang.lee@linux.alibaba.com> | 2024-10-17 07:19:09 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2024-10-17 13:13:09 +0200 |
commit | 7bc18a78157997575d8260bd922fff11fb5f21df (patch) | |
tree | 2dd225f1330dbeb66c8233f771c09ad80c0f5f2d /sound/soc/codecs/ntp8835.c | |
parent | ASoC: makes snd_soc_set_runtime_hwparams() inline (diff) | |
download | linux-7bc18a78157997575d8260bd922fff11fb5f21df.tar.xz linux-7bc18a78157997575d8260bd922fff11fb5f21df.zip |
ASoC: codecs: Remove unneeded semicolon
This patch removes an unneeded semicolon after a switch statement.
./sound/soc/codecs/ntp8835.c:280:2-3: Unneeded semicolon
Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Closes: https://bugzilla.openanolis.cn/show_bug.cgi?id=11404
Signed-off-by: Yang Li <yang.lee@linux.alibaba.com>
Link: https://patch.msgid.link/20241017051909.4638-1-yang.lee@linux.alibaba.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to '')
-rw-r--r-- | sound/soc/codecs/ntp8835.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/ntp8835.c b/sound/soc/codecs/ntp8835.c index 97056d8de2bb..800bda6b49dd 100644 --- a/sound/soc/codecs/ntp8835.c +++ b/sound/soc/codecs/ntp8835.c @@ -277,7 +277,7 @@ static int ntp8835_set_component_sysclk(struct snd_soc_component *component, ntp8835->mclk_rate = 0; dev_err(component->dev, "Unsupported MCLK value: %u", freq); return -EINVAL; - }; + } return 0; } |