Skip to content

Commit f275958

Browse files
Laurent Pinchartgregkh
authored andcommitted
drm: panel: simple: Fix bpc for LG LB070WV8 panel
[ Upstream commit a6ae2fe ] The LG LB070WV8 panel incorrectly reports a 16 bits per component value, while the panel uses 8 bits per component. Fix it. Fixes: dd01500 ("drm/panel: simple: Add support for LG LB070WV8 800x480 7" panel") Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com> Signed-off-by: Sam Ravnborg <sam@ravnborg.org> Link: https://patchwork.freedesktop.org/patch/msgid/20200711225317.28476-1-laurent.pinchart+renesas@ideasonboard.com Signed-off-by: Sasha Levin <sashal@kernel.org>
1 parent 92887e8 commit f275958

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
@@ -1503,7 +1503,7 @@ static const struct drm_display_mode lg_lb070wv8_mode = {
15031503
static const struct panel_desc lg_lb070wv8 = {
15041504
.modes = &lg_lb070wv8_mode,
15051505
.num_modes = 1,
1506-
.bpc = 16,
1506+
.bpc = 8,
15071507
.size = {
15081508
.width = 151,
15091509
.height = 91,

0 commit comments

Comments
 (0)