diff options
author | Zhenyu Wang <zhenyu.z.wang@intel.com> | 2009-03-25 11:13:52 +0800 |
---|---|---|
committer | Carl Worth <cworth@cworth.org> | 2009-03-31 17:06:18 -0700 |
commit | a03feab1b7ce511e1704bee96c83290d1c7b2785 (patch) | |
tree | 7748574bd81ea3cb6e8dc897dc360f82c9acd371 /src | |
parent | 767524888840d7e06f6b5d6fa720b21d882d4625 (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.
(cherry picked from commit 375b2e40fcb17e94538a75392950e2533c1bb031)
Diffstat (limited to 'src')
-rw-r--r-- | src/i830_bios.c | 6 |
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; |