aboutsummaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
authorkbuild test robot <fengguang.wu@intel.com>2016-06-30 10:28:10 -0400
committerMark Brown <broonie@kernel.org>2016-07-01 05:38:29 -0400
commitdcf7d1992b943192856ccf453375b158e3afd0a3 (patch)
treec533b55efbdc41a1ee23ada909aecd6ad713e537 /sound
parentfa7c0d13cb26216f6dec5ef19e028e68b300530d (diff)
ASoC: sunxi: fix semicolon.cocci warnings
sound/soc/sunxi/sun4i-i2s.c:624:2-3: Unneeded semicolon Remove unneeded semicolon. Generated by: scripts/coccinelle/misc/semicolon.cocci Signed-off-by: Fengguang Wu <fengguang.wu@intel.com> Acked-by: Maxime Ripard <maxime.ripard@free-electrons.com> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound')
-rw-r--r--sound/soc/sunxi/sun4i-i2s.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/sunxi/sun4i-i2s.c b/sound/soc/sunxi/sun4i-i2s.c
index 72ed2b8a93e7..fab52347c6d7 100644
--- a/sound/soc/sunxi/sun4i-i2s.c
+++ b/sound/soc/sunxi/sun4i-i2s.c
@@ -621,7 +621,7 @@ static int sun4i_i2s_probe(struct platform_device *pdev)
621 if (IS_ERR(i2s->regmap)) { 621 if (IS_ERR(i2s->regmap)) {
622 dev_err(&pdev->dev, "Regmap initialisation failed\n"); 622 dev_err(&pdev->dev, "Regmap initialisation failed\n");
623 return PTR_ERR(i2s->regmap); 623 return PTR_ERR(i2s->regmap);
624 }; 624 }
625 625
626 i2s->mod_clk = devm_clk_get(&pdev->dev, "mod"); 626 i2s->mod_clk = devm_clk_get(&pdev->dev, "mod");
627 if (IS_ERR(i2s->mod_clk)) { 627 if (IS_ERR(i2s->mod_clk)) {