projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
807e2f3
)
drm/mediatek: dp: Remove extra semicolon
author
Deepak R Varma
<drv@mailo.com>
Sat, 14 Jan 2023 15:41:22 +0000
(21:11 +0530)
committer
Chun-Kuang Hu
<chunkuang.hu@kernel.org>
Fri, 27 Jan 2023 01:05:19 +0000
(
01:05
+0000)
Remove unnecessary semicolon at the end of switch block closing brace.
Issue identified using semicolon Coccinelle semantic patch.
Signed-off-by: Deepak R Varma <drv@mailo.com>
Link:
https://patchwork.kernel.org/project/linux-mediatek/patch/Y8LNIt97qxLk8e70@ubun2204.myguest.virtualbox.org/
Signed-off-by: Chun-Kuang Hu <chunkuang.hu@kernel.org>
drivers/gpu/drm/mediatek/mtk_dp.c
patch
|
blob
|
history
diff --git
a/drivers/gpu/drm/mediatek/mtk_dp.c
b/drivers/gpu/drm/mediatek/mtk_dp.c
index 9d085c05c49c3b1683b81e2bbfc415d7e5728a99..9da58ac5a8b866e79c0f2529441df2fe445bf859 100644
(file)
--- a/
drivers/gpu/drm/mediatek/mtk_dp.c
+++ b/
drivers/gpu/drm/mediatek/mtk_dp.c
@@
-1693,7
+1693,7
@@
static int mtk_dp_training(struct mtk_dp *mtk_dp)
break;
default:
return -EINVAL;
- }
;
+ }
continue;
}