aboutsummaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
authorWu Fengguang <fengguang.wu@intel.com>2017-06-30 00:27:13 +0800
committerMark Brown <broonie@kernel.org>2017-06-30 12:57:19 +0100
commit46b5a4d249ac6798cee28de9f51ef80777d16a3e (patch)
tree7d53c769d5258d82a8423e309a1e1aa24363e44a /sound
parentASoC: codecs: rt5670: fix jd mode for Lenovo Miix 2 10 (diff)
downloadlinux-dev-46b5a4d249ac6798cee28de9f51ef80777d16a3e.tar.xz
linux-dev-46b5a4d249ac6798cee28de9f51ef80777d16a3e.zip
ASoC: fix semicolon.cocci warnings
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@linux.intel.com> Signed-off-by: Fengguang Wu <fengguang.wu@intel.com> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound')
-rw-r--r--sound/soc/soc-core.c2
1 files changed, 1 insertions, 1 deletions
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;
}