aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/nouveau/nouveau_connector.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/drm/nouveau/nouveau_connector.c')
-rw-r--r--drivers/gpu/drm/nouveau/nouveau_connector.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/drivers/gpu/drm/nouveau/nouveau_connector.c b/drivers/gpu/drm/nouveau/nouveau_connector.c
index 8f510fd956b0..fa860358add1 100644
--- a/drivers/gpu/drm/nouveau/nouveau_connector.c
+++ b/drivers/gpu/drm/nouveau/nouveau_connector.c
@@ -654,10 +654,13 @@ nouveau_connector_detect_depth(struct drm_connector *connector)
654 if (nv_connector->edid && connector->display_info.bpc) 654 if (nv_connector->edid && connector->display_info.bpc)
655 return; 655 return;
656 656
657 /* if not, we're out of options unless we're LVDS, default to 6bpc */ 657 /* if not, we're out of options unless we're LVDS, default to 8bpc */
658 connector->display_info.bpc = 6; 658 if (nv_encoder->dcb->type != OUTPUT_LVDS) {
659 if (nv_encoder->dcb->type != OUTPUT_LVDS) 659 connector->display_info.bpc = 8;
660 return; 660 return;
661 }
662
663 connector->display_info.bpc = 6;
661 664
662 /* LVDS: panel straps */ 665 /* LVDS: panel straps */
663 if (bios->fp_no_ddc) { 666 if (bios->fp_no_ddc) {