]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
ASoC: codecs: Remove unneeded semicolon
authorYang Li <yang.lee@linux.alibaba.com>
Thu, 17 Oct 2024 05:19:09 +0000 (13:19 +0800)
committerMark Brown <broonie@kernel.org>
Thu, 17 Oct 2024 11:13:09 +0000 (12:13 +0100)
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>
sound/soc/codecs/ntp8835.c

index 97056d8de2bba334269b4bc07116a174eef2a95c..800bda6b49ddadf9602bcfd2f45b24a3e8984638 100644 (file)
@@ -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;
 }