summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMartin-Éric Racine <q-funk@iki.fi>2009-09-27 14:55:25 +0300
committerMartin-Éric Racine <q-funk@iki.fi>2009-09-27 14:55:25 +0300
commita504725d2250e663f0a275fd0c02cc849dafe792 (patch)
treeb9c45795f07f6c20220ff28b898d683a49d57539 /src
parent1b1092b11a686febfd3ee20bd18677fcc366faa5 (diff)
Revert "LX: validate display modes"
This reverts commit 3af472f4453f8e92a9f303e64e2796836374d980. This commit had broken detection of arbitrary non-VESA resolutions, which affected the OLPC XO-1 and a number of Geode-based notebooks.
Diffstat (limited to 'src')
-rw-r--r--src/lx_output.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/lx_output.c b/src/lx_output.c
index 3eecc9e..72e5e2a 100644
--- a/src/lx_output.c
+++ b/src/lx_output.c
@@ -163,13 +163,6 @@ lx_output_mode_valid(xf86OutputPtr output, DisplayModePtr pMode)
return MODE_BAD;
}
- if (gfx_is_display_mode_supported(pMode->HDisplay,
- pMode->VDisplay,
- pScrni->bitsPerPixel,
- GeodeGetRefreshRate(pMode)) < 0) {
- return MODE_BAD;
- }
-
return MODE_OK;
}