diff mbox series

drm/panel-edp: Fix AUO B133UAN01 panel id

Message ID 20220330090435.1.Id1522250dd07a6b574c1cc7826023fc6acd141b4@changeid (mailing list archive)
State New, archived
Headers show
Series drm/panel-edp: Fix AUO B133UAN01 panel id | expand

Commit Message

Matthias Kaehlcke March 30, 2022, 4:04 p.m. UTC
Two digits are swapped in the AUO B133UAN01 panel id (0x8495 instead
of 0x8594). This went initially unnoticed because the panel is still
detected, though it is set up with a conservative default timing. Fix
the digit swap.

Fixes: ec57376fba5a ("drm/panel-edp: Add AUO B133UAN01")
Signed-off-by: Matthias Kaehlcke <mka@chromium.org>
---

 drivers/gpu/drm/panel/panel-edp.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Douglas Anderson March 30, 2022, 9:09 p.m. UTC | #1
Hi,

On Wed, Mar 30, 2022 at 9:04 AM Matthias Kaehlcke <mka@chromium.org> wrote:
>
> Two digits are swapped in the AUO B133UAN01 panel id (0x8495 instead
> of 0x8594). This went initially unnoticed because the panel is still
> detected, though it is set up with a conservative default timing. Fix
> the digit swap.
>
> Fixes: ec57376fba5a ("drm/panel-edp: Add AUO B133UAN01")
> Signed-off-by: Matthias Kaehlcke <mka@chromium.org>
> ---
>
>  drivers/gpu/drm/panel/panel-edp.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Doh! OK, pushed the fix to drm-misc-next w/ my Reviewed-by tag.

d049a24b15d8 drm/panel-edp: Fix AUO B133UAN01 panel id

-Doug
diff mbox series

Patch

diff --git a/drivers/gpu/drm/panel/panel-edp.c b/drivers/gpu/drm/panel/panel-edp.c
index db4eea1d7f67..1732b4f56e38 100644
--- a/drivers/gpu/drm/panel/panel-edp.c
+++ b/drivers/gpu/drm/panel/panel-edp.c
@@ -1847,7 +1847,7 @@  static const struct panel_delay delay_100_500_e200 = {
 static const struct edp_panel_entry edp_panels[] = {
 	EDP_PANEL_ENTRY('A', 'U', 'O', 0x405c, &auo_b116xak01.delay, "B116XAK01"),
 	EDP_PANEL_ENTRY('A', 'U', 'O', 0x615c, &delay_200_500_e50, "B116XAN06.1"),
-	EDP_PANEL_ENTRY('A', 'U', 'O', 0x8495, &delay_200_500_e50, "B133UAN01.0"),
+	EDP_PANEL_ENTRY('A', 'U', 'O', 0x8594, &delay_200_500_e50, "B133UAN01.0"),
 
 	EDP_PANEL_ENTRY('B', 'O', 'E', 0x0786, &delay_200_500_p2e80, "NV116WHM-T01"),
 	EDP_PANEL_ENTRY('B', 'O', 'E', 0x07d1, &boe_nv133fhm_n61.delay, "NV133FHM-N61"),