diff options
author | David Nusinow <dnusinow@debian.org> | 2008-01-06 16:37:13 -0500 |
---|---|---|
committer | David Nusinow <dnusinow@debian.org> | 2008-01-06 16:37:13 -0500 |
commit | 260505e3c5a18044e97d31ea3bcc0955e46335c8 (patch) | |
tree | 33d0e557c5477bc4ac6b3da0c9a60ad99572d5ed /hw/xfree86/common/xf86DPMS.c | |
parent | 7e7622165940934e56ae96ae785a8f88eec1a5cf (diff) |
Log enabling of DPMS even when it's not set in xorg.conf
Diffstat (limited to 'hw/xfree86/common/xf86DPMS.c')
-rw-r--r-- | hw/xfree86/common/xf86DPMS.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/hw/xfree86/common/xf86DPMS.c b/hw/xfree86/common/xf86DPMS.c index 43efb8ed4..a23d81d3f 100644 --- a/hw/xfree86/common/xf86DPMS.c +++ b/hw/xfree86/common/xf86DPMS.c @@ -79,7 +79,6 @@ xf86DPMSInit(ScreenPtr pScreen, DPMSSetProcPtr set, int flags) && !DPMSDisabledSwitch) DPMSEnabled = TRUE; xf86MarkOptionUsed(DPMSOpt); - xf86DrvMsg(pScreen->myNum, X_CONFIG, "DPMS enabled\n"); } else if (DPMSEnabledSwitch) { if (!DPMSDisabledSwitch) DPMSEnabled = TRUE; @@ -88,6 +87,8 @@ xf86DPMSInit(ScreenPtr pScreen, DPMSSetProcPtr set, int flags) else { pDPMS->Enabled = defaultDPMSEnabled; } + if (pDPMS->Enabled) + xf86DrvMsg(pScreen->myNum, X_CONFIG, "DPMS enabled\n"); pDPMS->CloseScreen = pScreen->CloseScreen; pScreen->CloseScreen = DPMSClose; DPMSCount++; |