[PATCH] ASoC: fix semicolon.cocci warnings

From: Wu Fengguang
Date: Thu Jun 29 2017 - 12:27:13 EST


sound/soc/soc-core.c:1961:2-3: Unneeded semicolon

Remove unneeded semicolon.

Generated by: scripts/coccinelle/misc/semicolon.cocci

Fixes: 98faf436ee05 ("ASoC: Drop invalid DMI fields when setting card long name from DMI info")
CC: Mengdong Lin <mengdong.lin@xxxxxxxxxxxxxxx>
Signed-off-by: Fengguang Wu <fengguang.wu@xxxxxxxxx>
Signed-off-by: Mark Brown <broonie@xxxxxxxxxx>
---
sound/soc/soc-core.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sound/soc/soc-core.c b/sound/soc/soc-core.c
index e14e04cc0a93..6bd593dc9b54 100644
--- a/sound/soc/soc-core.c
+++ b/sound/soc/soc-core.c
@@ -1958,7 +1958,7 @@ static int is_dmi_valid(const char *field)
if (strstr(field, dmi_blacklist[i]))
return 0;
i++;
- };
+ }

return 1;
}
--
2.13.2