Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

drm/mediatek: mtk_hdmi_v2: Remove unneeded semicolon

Remove unnecessary semicolons reported by Coccinelle/coccicheck and the
semantic patch at scripts/coccinelle/misc/semicolon.cocci.

Signed-off-by: Chen Ni <nichen@iscas.ac.cn>
Link: https://patchwork.kernel.org/project/dri-devel/patch/20251125014740.1059347-1-nichen@iscas.ac.cn/
Signed-off-by: Chun-Kuang Hu <chunkuang.hu@kernel.org>

authored by

Chen Ni and committed by
Chun-Kuang Hu
f9c68b1c 8f0b4cce

+3 -3
+3 -3
drivers/gpu/drm/mediatek/mtk_hdmi_v2.c
··· 746 746 case HDMI_COLORSPACE_YUV420: 747 747 mtk_hdmi_yuv420_downsampling(hdmi, true); 748 748 break; 749 - }; 749 + } 750 750 } 751 751 752 752 static void mtk_hdmi_v2_output_set_display_mode(struct mtk_hdmi *hdmi, ··· 1157 1157 case HDMI_INFOFRAME_TYPE_DRM: 1158 1158 default: 1159 1159 break; 1160 - }; 1160 + } 1161 1161 1162 1162 return 0; 1163 1163 } ··· 1185 1185 default: 1186 1186 dev_err(hdmi->dev, "Unsupported HDMI infoframe type %u\n", type); 1187 1187 break; 1188 - }; 1188 + } 1189 1189 1190 1190 return 0; 1191 1191 }