diff options
author | Jiapeng Chong <jiapeng.chong@linux.alibaba.com> | 2021-06-04 13:23:29 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2021-06-07 18:20:02 +0300 |
commit | 54f6731394520d706c3133aab17aa90434bcf1aa (patch) | |
tree | c8489887269975ec7eb2733ec90fc6b1d93a3c39 /sound/soc/codecs/rk817_codec.c | |
parent | b9de77d0bc518fa08b7d218a4de171edb42f0a79 (diff) | |
download | linux-54f6731394520d706c3133aab17aa90434bcf1aa.tar.xz |
ASoC: rk817: Remove unneeded semicolon
Fix the following coccicheck warnings:
./sound/soc/codecs/rk817_codec.c:49:2-3: Unneeded semicolon.
Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Signed-off-by: Jiapeng Chong <jiapeng.chong@linux.alibaba.com>
Link: https://lore.kernel.org/r/1622802209-45031-1-git-send-email-jiapeng.chong@linux.alibaba.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/codecs/rk817_codec.c')
-rw-r--r-- | sound/soc/codecs/rk817_codec.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sound/soc/codecs/rk817_codec.c b/sound/soc/codecs/rk817_codec.c index fd3a5ba034a9..f771184c7301 100644 --- a/sound/soc/codecs/rk817_codec.c +++ b/sound/soc/codecs/rk817_codec.c @@ -46,7 +46,8 @@ static int rk817_init(struct snd_soc_component *component) if (rk817->mic_in_differential) { snd_soc_component_update_bits(component, RK817_CODEC_AMIC_CFG0, MIC_DIFF_MASK, MIC_DIFF_EN); - }; + } + return 0; } |