summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave Airlie <airlied@airlied-rhel5.(none)>2010-04-21 11:07:32 +1000
committerDave Airlie <airlied@airlied-rhel5.(none)>2010-04-21 11:07:32 +1000
commit8909465cce886adec51fe2ee81b196af22305e09 (patch)
tree6bbfe4f40ab3dbf061c73ee6236acebcf2977b58
parent8067369c94ef349aeb10c284af08b59ddcbc1bca (diff)
intel-2.2.1-ironlake-vbt-parse-fix.patch
-rw-r--r--src/i830_bios.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/i830_bios.c b/src/i830_bios.c
index 7ed791e6..b7e69e12 100644
--- a/src/i830_bios.c
+++ b/src/i830_bios.c
@@ -194,7 +194,7 @@ i830_bios_get_panel_mode(ScrnInfoPtr pScrn, Bool *wants_dither)
timing_ptr = bios + bdb_off +
lvds2->panels[panel_type].fp_edid_dtd_offset;
- if (fpparam->terminator != 0xffff) {
+ if (!IS_IGDNG(pI830) && fpparam->terminator != 0xffff) {
/* Apparently the offsets are wrong for some BIOSes, so we
* try the other offsets if we find a bad terminator.
*/