From 6e72489bc149015ea89d6e9d061ec0a4a68e939a Mon Sep 17 00:00:00 2001 From: Zhenyu Wang Date: Wed, 25 Mar 2009 11:13:52 +0800 Subject: [PATCH] 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. --- 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 9b13bf4..4f2355d 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; -- 1.6.2.1