mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 14:13:16 +00:00
20ea6adbf1
Build system: x86_64 Build-tested: bcm2708, bcm2709, bcm2710, bcm2711 Run-tested: bcm2708/RPiB+, bcm2709/RPi3B, bcm2710/RPi3B, bcm2711/RPi4B Signed-off-by: Marty Jones <mj8263788@gmail.com> Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
25 lines
849 B
Diff
25 lines
849 B
Diff
From 61dcbd9d50cb21d1e56868e01f5ec3c11f5e3176 Mon Sep 17 00:00:00 2001
|
|
From: Dave Stevenson <dave.stevenson@raspberrypi.com>
|
|
Date: Thu, 2 Dec 2021 18:10:55 +0000
|
|
Subject: [PATCH] drm/panel-simple: Populate bpc when using panel-dpi
|
|
|
|
panel-dpi doesn't know the bit depth, so in the same way that
|
|
DPI is guessed for the connector type, guess that it'll be 8bpc.
|
|
|
|
Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
|
|
---
|
|
drivers/gpu/drm/panel/panel-simple.c | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
|
|
--- a/drivers/gpu/drm/panel/panel-simple.c
|
|
+++ b/drivers/gpu/drm/panel/panel-simple.c
|
|
@@ -607,6 +607,8 @@ static int panel_dpi_probe(struct device
|
|
|
|
/* We do not know the connector for the DT node, so guess it */
|
|
desc->connector_type = DRM_MODE_CONNECTOR_DPI;
|
|
+ /* Likewise for the bit depth. */
|
|
+ desc->bpc = 8;
|
|
|
|
panel->desc = desc;
|
|
|