mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-30 08:02:30 +00:00
drm/nouveau: Fix detection of DDC-based LVDS on DCB15 boards.
Signed-off-by: Francisco Jerez <currojerez@riseup.net> Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
This commit is contained in:
parent
8788622147
commit
77b1d5dc11
1 changed files with 1 additions and 1 deletions
|
@ -6228,7 +6228,7 @@ parse_dcb15_entry(struct drm_device *dev, struct dcb_table *dcb,
|
||||||
entry->tvconf.has_component_output = false;
|
entry->tvconf.has_component_output = false;
|
||||||
break;
|
break;
|
||||||
case OUTPUT_LVDS:
|
case OUTPUT_LVDS:
|
||||||
if ((conn & 0x00003f00) != 0x10)
|
if ((conn & 0x00003f00) >> 8 != 0x10)
|
||||||
entry->lvdsconf.use_straps_for_mode = true;
|
entry->lvdsconf.use_straps_for_mode = true;
|
||||||
entry->lvdsconf.use_power_scripts = true;
|
entry->lvdsconf.use_power_scripts = true;
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in a new issue