diff options
author | kbuild test robot <lkp@intel.com> | 2020-02-23 01:01:54 +0800 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2020-02-24 13:12:10 +0000 |
commit | 1640c8df0bbac9e5156132e24c0f0a932c2b2865 (patch) | |
tree | 57dc33a87588ca9c5ab2eaed2b74afbb629aaaef | |
parent | 5a309875787db47d69610e45f00a727ef9e62aa0 (diff) | |
download | linux-1640c8df0bbac9e5156132e24c0f0a932c2b2865.tar.bz2 |
ASoC: meson: aiu: fix semicolon.cocci warnings
sound/soc/meson/aiu-encoder-i2s.c:129:2-3: Unneeded semicolon
Remove unneeded semicolon.
Generated by: scripts/coccinelle/misc/semicolon.cocci
Fixes: 3e25c44598aa ("ASoC: meson: aiu: add support for the Meson8 and Meson8b SoC families")
Signed-off-by: kbuild test robot <lkp@intel.com>
CC: Martin Blumenstingl <martin.blumenstingl@googlemail.com>
Link: https://lore.kernel.org/r/20200222170154.GA119396@e50d7db646c3
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | sound/soc/meson/aiu-encoder-i2s.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/meson/aiu-encoder-i2s.c b/sound/soc/meson/aiu-encoder-i2s.c index cc73b5d5c2b7..832e22d275fe 100644 --- a/sound/soc/meson/aiu-encoder-i2s.c +++ b/sound/soc/meson/aiu-encoder-i2s.c @@ -126,7 +126,7 @@ static int aiu_encoder_i2s_set_legacy_div(struct snd_soc_component *component, default: dev_err(component->dev, "Unsupported i2s divider: %u\n", bs); return -EINVAL; - }; + } snd_soc_component_update_bits(component, AIU_CLK_CTRL, AIU_CLK_CTRL_I2S_DIV, |