Skip to content

Commit e96f099

Browse files
Yang Lisuperna9999
authored andcommitted
drm/meson: Remove unneeded semicolon
./drivers/gpu/drm/meson/meson_dw_mipi_dsi.c:117:2-3: Unneeded semicolon ./drivers/gpu/drm/meson/meson_dw_mipi_dsi.c:231:2-3: Unneeded semicolon Reported-by: Abaci Robot <[email protected]> Closes: https://bugzilla.openanolis.cn/show_bug.cgi?id=5392 Signed-off-by: Yang Li <[email protected]> Acked-by: Neil Armstrong <[email protected]> Signed-off-by: Neil Armstrong <[email protected]> Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
1 parent 8716a64 commit e96f099

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

drivers/gpu/drm/meson/meson_dw_mipi_dsi.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ static int dw_mipi_dsi_phy_init(void *priv_data)
114114
case MIPI_DSI_FMT_RGB666_PACKED:
115115
case MIPI_DSI_FMT_RGB565:
116116
return -EINVAL;
117-
};
117+
}
118118

119119
/* Configure color format for DPI register */
120120
writel_relaxed(FIELD_PREP(MIPI_DSI_TOP_DPI_COLOR_MODE, dpi_data_format) |
@@ -228,7 +228,7 @@ static int meson_dw_mipi_dsi_host_attach(void *priv_data,
228228
case MIPI_DSI_FMT_RGB565:
229229
dev_err(mipi_dsi->dev, "invalid pixel format %d\n", device->format);
230230
return -EINVAL;
231-
};
231+
}
232232

233233
ret = phy_init(mipi_dsi->phy);
234234
if (ret)

0 commit comments

Comments
 (0)