summaryrefslogtreecommitdiff
path: root/src/i830_crt.c
diff options
context:
space:
mode:
authorPaul Menzel <paulepanter@users.sourceforge.net>2009-06-07 22:08:05 +0200
committerPaul Menzel <paulepanter@users.sourceforge.net>2009-06-07 22:08:05 +0200
commit5cdafb61c72cfc9c0daddcb2dae9b981e8f5d8b8 (patch)
tree8acb61c61b70d126c2f2b965d5a6ac3898968fb1 /src/i830_crt.c
parentbe5e8111a0b6b5ff3d643bea6f8728637ae4d070 (diff)
parenta7690d9f0b9a3e0628f51635ba78117b614edf1b (diff)
downloadxf86-video-intel-frc-debian-unstable-with-frc-patches.tar.gz
xf86-video-intel-frc-debian-unstable-with-frc-patches.tar.bz2
Merge branch 'upstream-unstable' into dufdebian-unstable-with-frc-patches
Diffstat (limited to 'src/i830_crt.c')
-rw-r--r--src/i830_crt.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/i830_crt.c b/src/i830_crt.c
index d8e4a766..27b7dd3b 100644
--- a/src/i830_crt.c
+++ b/src/i830_crt.c
@@ -91,7 +91,7 @@ i830_crt_mode_valid(xf86OutputPtr output, DisplayModePtr pMode)
if (pMode->Flags & V_DBLSCAN)
return MODE_NO_DBLESCAN;
- if (pMode->Clock < 25000)
+ if (pMode->Clock < 12000)
return MODE_CLOCK_LOW;
if (!IS_I9XX(pI830))
@@ -433,6 +433,12 @@ out_release_pipe:
i830ReleaseLoadDetectPipe (output, dpms_mode);
done:
+
+ /*
+ * allow Xserver to run even without a CRT connected
+ */
+ status = XF86OutputStatusConnected;
+
return status;
}