projects
/
GitHub
/
LineageOS
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8cffb50
)
ASoC: fix semicolon.cocci warnings
author
Wu Fengguang
<fengguang.wu@intel.com>
Thu, 29 Jun 2017 16:27:13 +0000
(
00:27
+0800)
committer
Mark Brown
<broonie@kernel.org>
Fri, 30 Jun 2017 11:57:19 +0000
(12:57 +0100)
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>
sound/soc/soc-core.c
patch
|
blob
|
blame
|
history
diff --git
a/sound/soc/soc-core.c
b/sound/soc/soc-core.c
index e14e04cc0a9300ee4514fd0786c1397f6948a507..6bd593dc9b549a3b4758081ee74e555501f4fd8b 100644
(file)
--- 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;
}