diff -u -u -r1.60 radeon_driver.c --- radeon_driver.c 2002/07/16 13:31:40 1.60 +++ radeon_driver.c 2002/07/19 05:54:06 @@ -865,6 +865,14 @@ else info->DisplayType = MT_CRT; } + + /* if the panel is forced off then force CRT */ + if (xf86ReturnOptValBool(info->Options, OPTION_PANEL_OFF, FALSE)) { + xf86DrvMsg(pScrn->scrnIndex, X_INFO, + "Forcing MT_CRT due to PanelOff setting\n"); + info->DisplayType = MT_CRT; + } + xf86DrvMsg(pScrn->scrnIndex, X_INFO, "%s Display == Type %d\n", (info->IsSecondary ? "Secondary" : "Primary"), info->DisplayType);