aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDeepak R Varma <[email protected]>2023-01-14 21:11:22 +0530
committerChun-Kuang Hu <[email protected]>2023-01-27 01:05:19 +0000
commit6bdabdd2458254b95c5be51b4a85a7ad81ad7478 (patch)
tree139ad0a84de313211cd9180f799b4a8041056938
parent807e2f3f58b174ff3f908c063c0ce13602ab555b (diff)
drm/mediatek: dp: Remove extra semicolon
Remove unnecessary semicolon at the end of switch block closing brace. Issue identified using semicolon Coccinelle semantic patch. Signed-off-by: Deepak R Varma <[email protected]> Link: https://patchwork.kernel.org/project/linux-mediatek/patch/[email protected]/ Signed-off-by: Chun-Kuang Hu <[email protected]>
-rw-r--r--drivers/gpu/drm/mediatek/mtk_dp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/mediatek/mtk_dp.c b/drivers/gpu/drm/mediatek/mtk_dp.c
index 9d085c05c49c..9da58ac5a8b8 100644
--- 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;
}