diff options
author | Alex Deucher <alex@botch2.(none)> | 2007-12-24 12:34:15 -0500 |
---|---|---|
committer | Alex Deucher <alex@botch2.(none)> | 2007-12-24 12:34:15 -0500 |
commit | d736eb5732da573162c70712dc4e8b0114986702 (patch) | |
tree | b855f2e8b8e91fb923e89a8d830578194805a423 | |
parent | 653da558148cc601bc1f80253e92ef98c75ef37a (diff) |
RADEON: default "IgnoreLidStatus" to TRUE
Seems there are lots of busted ACPI lid status and people
starting X with the lid closed.
-rw-r--r-- | man/radeon.man | 2 | ||||
-rw-r--r-- | src/radeon_output.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/man/radeon.man b/man/radeon.man index 49755f4..2a561a6 100644 --- a/man/radeon.man +++ b/man/radeon.man @@ -471,7 +471,7 @@ The default is Enable this option to ignore lid status on laptops and always detect LVDS as attached. The default is -.B off +.B on. .TP .SH SEE ALSO diff --git a/src/radeon_output.c b/src/radeon_output.c index 814c766..c5f796b 100644 --- a/src/radeon_output.c +++ b/src/radeon_output.c @@ -442,7 +442,7 @@ static RADEONMonitorType RADEONPortCheckNonDDC(ScrnInfoPtr pScrn, xf86OutputPtr RADEONMonitorType MonType = MT_NONE; if (radeon_output->type == OUTPUT_LVDS) { - if (xf86ReturnOptValBool(info->Options, OPTION_IGNORE_LID_STATUS, FALSE)) + if (xf86ReturnOptValBool(info->Options, OPTION_IGNORE_LID_STATUS, TRUE)) MonType = MT_LCD; else #if defined(__powerpc__) |