The trailing semicolon is an empty statement that does no operation. Removing it since it doesn't do anything.
Signed-off-by: Luis de Bethencourt luisbg@kernel.org ---
Hi,
After fixing the same thing in drivers/staging/rtl8723bs/, Joe Perches suggested I fix it treewide [0].
Best regards Luis
[0] http://driverdev.linuxdriverproject.org/pipermail/driverdev-devel/2018-Janua... [1] http://driverdev.linuxdriverproject.org/pipermail/driverdev-devel/2018-Janua...
sound/soc/codecs/cs42l73.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sound/soc/codecs/cs42l73.c b/sound/soc/codecs/cs42l73.c index dde37e569ade..aebaa97490b6 100644 --- a/sound/soc/codecs/cs42l73.c +++ b/sound/soc/codecs/cs42l73.c @@ -1355,7 +1355,7 @@ static int cs42l73_i2c_probe(struct i2c_client *i2c_client, ret = regmap_read(cs42l73->regmap, CS42L73_REVID, ®); if (ret < 0) { dev_err(&i2c_client->dev, "Get Revision ID failed\n"); - return ret;; + return ret; }
dev_info(&i2c_client->dev,