diff options
author | Zhenyu Wang <zhenyu.z.wang@intel.com> | 2008-04-14 16:31:03 +0800 |
---|---|---|
committer | Zhenyu Wang <zhenyu.z.wang@intel.com> | 2008-04-14 16:31:03 +0800 |
commit | 33ffd781bbca3d0dee8c1b47e7b90be5824b9a4f (patch) | |
tree | 132f2fdbe537dfd8ed9160b278636be2c1ce3d19 /src | |
parent | 768fa9437c6f96405aa827701135712670e09ab3 (diff) |
Change default panel fitting mode to origin
i8xx currently only works in FULL mode.
Diffstat (limited to 'src')
-rw-r--r-- | src/i830_lvds.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/i830_lvds.c b/src/i830_lvds.c index a5004b4b..1562c217 100644 --- a/src/i830_lvds.c +++ b/src/i830_lvds.c @@ -1366,9 +1366,10 @@ i830_lvds_init(ScrnInfoPtr pScrn) /* * Default to filling the whole screen if the mode is less than the - * native size, without breaking aspect ratio. + * native size. (Change default to origin FULL mode, i8xx can only work + * in that mode for now.) */ - dev_priv->fitting_mode = FULL_ASPECT; + dev_priv->fitting_mode = FULL; return; |