summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZhenyu Wang <zhenyu.z.wang@intel.com>2009-03-25 11:13:52 +0800
committerZhenyu Wang <zhenyu.z.wang@intel.com>2009-03-27 14:58:40 +0800
commit375b2e40fcb17e94538a75392950e2533c1bb031 (patch)
tree378e2c429e5ebc6074a35ae88820960ffca00b0f
parent69c84f2c8204771b68f40ed64e64657237b54546 (diff)
Disable LVDS config parsing from VBT for now
As wider tests showed that this doesn't work for all VBIOS, so disable it for now and reenable it after we get reliable method.
-rw-r--r--src/i830_bios.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/i830_bios.c b/src/i830_bios.c
index 9b13bf40..4f2355de 100644
--- a/src/i830_bios.c
+++ b/src/i830_bios.c
@@ -181,6 +181,12 @@ parse_driver_feature(I830Ptr pI830, struct bdb_header *bdb)
if (!IS_I9XX(pI830))
return;
+ /* XXX Disable this parsing, as it looks doesn't work for all
+ VBIOS. Reenable it if we could find out the reliable VBT parsing
+ for LVDS config later. */
+ if (1)
+ return;
+
feature = find_section(bdb, BDB_DRIVER_FEATURES);
if (!feature)
return;