[PATCH] ASoC: fix semicolon.cocci warnings

From: kbuild test robot
Date: Thu Jun 29 2017 - 12:27:35 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>
---

soc-core.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

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

return 1;
}