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 /src/radeon_output.c | |
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.
Diffstat (limited to 'src/radeon_output.c')
-rw-r--r-- | src/radeon_output.c | 2 |
1 files changed, 1 insertions, 1 deletions
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__) |