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 <[email protected]>
Signed-off-by: Fengguang Wu <[email protected]>
---
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;
}