mirror of
https://gitlab.freedesktop.org/mesa/drm.git
synced 2026-05-05 17:08:03 +02:00
NV50: don't fail on LVDS by default
This commit is contained in:
parent
03f8208ab0
commit
147ef45873
1 changed files with 6 additions and 5 deletions
|
|
@ -341,11 +341,12 @@ parse_dcb_entry(struct drm_device *dev, int index, uint8_t dcb_version, uint16_t
|
|||
entry->lvdsconf.use_power_scripts = true;
|
||||
}
|
||||
if (conf & mask) {
|
||||
DRM_ERROR(
|
||||
"Unknown LVDS configuration bits, please report\n");
|
||||
/* cause output setting to fail, so message is seen */
|
||||
dev_priv->dcb_table.entries = 0;
|
||||
return false;
|
||||
if (dcb_version < 0x40) { /* we know g80 cards have unknown bits */
|
||||
DRM_ERROR("Unknown LVDS configuration bits, please report\n");
|
||||
/* cause output setting to fail, so message is seen */
|
||||
dev_priv->dcb_table.entries = 0;
|
||||
return false;
|
||||
}
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue