diff options
author | Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br> | 2008-11-08 16:04:58 -0200 |
---|---|---|
committer | Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br> | 2008-11-08 16:04:58 -0200 |
commit | 418b28028e69d14e74bf673be56123e99103e5bf (patch) | |
tree | d76d81fc5a499d65154fa69f19b7a9b7d23868d1 /src/smi_driver.c | |
parent | bbc38b2a14d748bb9d9e153fcdcb259e5b10bdc8 (diff) |
Remove the ZoomOnLCD option and update manpage for PCIRetry.
ZoomOnLCD controlled if Ctrl/Alt/+ or Ctrl/Alt/- could be used to
reprogram the mode on the panel. The option was not used, and now, if
different resolutions could be used, it should be advertised by randr.
PCIBurst and PCIRetry options are now enabled by default.
The fifo_xxx options need a review, as they appear to be associated
with the older WaitQueue macro, that did ignore its argument. But these
options are not used, and may be removed or reimplemented at some time.
Diffstat (limited to 'src/smi_driver.c')
-rw-r--r-- | src/smi_driver.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/smi_driver.c b/src/smi_driver.c index 9bfc712..a96321a 100644 --- a/src/smi_driver.c +++ b/src/smi_driver.c @@ -161,7 +161,6 @@ typedef enum OPTION_INTERLACED, /* end CZ */ OPTION_USEBIOS, - OPTION_ZOOMONLCD, OPTION_DUALHEAD, OPTION_ACCELMETHOD, OPTION_PANEL_SIZE, @@ -187,7 +186,6 @@ static const OptionInfoRec SMIOptions[] = { OPTION_INTERLACED, "Interlaced", OPTV_BOOLEAN, {0}, FALSE }, /* end CZ */ { OPTION_USEBIOS, "UseBIOS", OPTV_BOOLEAN, {0}, FALSE }, - { OPTION_ZOOMONLCD, "ZoomOnLCD", OPTV_BOOLEAN, {0}, FALSE }, { OPTION_DUALHEAD, "Dualhead", OPTV_BOOLEAN, {0}, TRUE }, { OPTION_ACCELMETHOD, "AccelMethod", OPTV_STRING, {0}, FALSE }, { OPTION_PANEL_SIZE, "PanelSize", OPTV_ANYSTR, {0}, FALSE }, @@ -735,15 +733,6 @@ SMI_PreInit(ScrnInfoPtr pScrn, int flags) pSmi->useBIOS = TRUE; } - if (xf86GetOptValBool(pSmi->Options, OPTION_ZOOMONLCD, &pSmi->zoomOnLCD)) { - xf86DrvMsg(pScrn->scrnIndex, X_CONFIG, "Option: ZoomOnLCD %s.\n", - pSmi->zoomOnLCD ? "enabled" : "disabled"); - } - else { - /* Default to ZoomOnLCD enabled. */ - pSmi->zoomOnLCD = TRUE; - } - if (pSmi->useBIOS) { if (xf86LoadSubModule(pScrn,"int10")) { xf86LoaderReqSymLists(int10Symbols,NULL); |