Skip to content

Commit eecfb4f

Browse files
pinchartlgregkh
authored andcommitted
drm: panel: Fix bpc for OrtusTech COM43H4M85ULC panel
[ Upstream commit 3b80951 ] The OrtusTech COM43H4M85ULC panel is a 18-bit RGB panel. Commit f098f16 ("drm: panel: Fix bus format for OrtusTech COM43H4M85ULC panel") has fixed the bus formats, but forgot to address the bpc value. Set it to 6. Fixes: f098f16 ("drm: panel: Fix bus format for OrtusTech COM43H4M85ULC panel") Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Sam Ravnborg <sam@ravnborg.org> Link: https://patchwork.freedesktop.org/patch/msgid/20200824003254.21904-1-laurent.pinchart@ideasonboard.com Signed-off-by: Sasha Levin <sashal@kernel.org>
1 parent e91d7ff commit eecfb4f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/gpu/drm/panel/panel-simple.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2941,7 +2941,7 @@ static const struct drm_display_mode ortustech_com43h4m85ulc_mode = {
29412941
static const struct panel_desc ortustech_com43h4m85ulc = {
29422942
.modes = &ortustech_com43h4m85ulc_mode,
29432943
.num_modes = 1,
2944-
.bpc = 8,
2944+
.bpc = 6,
29452945
.size = {
29462946
.width = 56,
29472947
.height = 93,

0 commit comments

Comments
 (0)