diff options
author | Zhenyu Wang <zhenyu.z.wang@intel.com> | 2008-08-19 07:30:01 +0800 |
---|---|---|
committer | Zhenyu Wang <zhenyu.z.wang@intel.com> | 2008-08-19 07:36:10 +0800 |
commit | d5fd845aab4074ed6d0950551e007ea43fd2d0df (patch) | |
tree | 58d9d73899641356b2c4c882d031ebcd12eed130 | |
parent | 4281b0116b8aa7201f523c21abf91f63e12cbccf (diff) |
Fix reverted LVDS bios capability dword definition
Issue found by Peter Clifton.
(cherry picked from commit 0e6759bb6ad7293b6447bd20e3d7d8fdee46aba7)
-rw-r--r-- | src/i830_bios.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/i830_bios.h b/src/i830_bios.h index a8d9adde..2b073f33 100644 --- a/src/i830_bios.h +++ b/src/i830_bios.h @@ -152,13 +152,13 @@ struct bdb_lvds_options { uint8_t panel_type; uint8_t rsvd1; /* LVDS capabilities, stored in a dword */ - uint8_t rsvd2:1; - uint8_t lvds_edid:1; - uint8_t pixel_dither:1; - uint8_t pfit_ratio_auto:1; - uint8_t pfit_gfx_mode_enhanced:1; - uint8_t pfit_text_mode_enhanced:1; uint8_t pfit_mode:2; + uint8_t pfit_text_mode_enhanced:1; + uint8_t pfit_gfx_mode_enhanced:1; + uint8_t pfit_ratio_auto:1; + uint8_t pixel_dither:1; + uint8_t lvds_edid:1; + uint8_t rsvd2:1; uint8_t rsvd4; } __attribute__((packed)); |