diff options
author | Jordan Crouse <jordan.crouse@amd.com> | 2006-12-15 08:46:42 -0700 |
---|---|---|
committer | Jordan Crouse <jordan.crouse@amd.com> | 2006-12-15 13:24:11 -0700 |
commit | 5b66b41b1d91345700e8f18569fa984c6ce53aca (patch) | |
tree | ec9c03f9b2a340917822c94cf86370c528930588 | |
parent | d901348441642fadbd71ed2e37e74b3b2a7af97c (diff) |
Remove unneeded GX options
-rw-r--r-- | src/amd.h | 3 | ||||
-rw-r--r-- | src/amd_driver.c | 2 | ||||
-rw-r--r-- | src/amd_gx_driver.c | 5 |
3 files changed, 0 insertions, 10 deletions
@@ -494,7 +494,6 @@ enum GX_OPTION_TV_SUPPORT, GX_OPTION_TV_OUTPUT, GX_OPTION_TV_OVERSCAN, - GX_OPTION_SHADOW_FB, GX_OPTION_ROTATE, GX_OPTION_NOPANEL, GX_OPTION_FLATPANEL_INFO, @@ -503,9 +502,7 @@ enum GX_OPTION_OSM, GX_OPTION_OSM_IMG_BUFS, GX_OPTION_OSM_CLR_BUFS, - GX_OPTION_CUSTOM_MODE, GX_OPTION_FBSIZE, - GX_OPTION_NOVGA, GX_OPTION_PANEL_GEOMETRY, GX_OPTION_DONT_PROGRAM } diff --git a/src/amd_driver.c b/src/amd_driver.c index 8b0d76f..dde3805 100644 --- a/src/amd_driver.c +++ b/src/amd_driver.c @@ -202,13 +202,11 @@ OptionInfoRec GX_GeodeOptions[] = { {GX_OPTION_TV_SUPPORT, "TV", OPTV_ANYSTR, {0}, FALSE}, {GX_OPTION_TV_OUTPUT, "TV_Output", OPTV_ANYSTR, {0}, FALSE}, {GX_OPTION_TV_OVERSCAN, "TVOverscan", OPTV_ANYSTR, {0}, FALSE}, - {GX_OPTION_SHADOW_FB, "ShadowFB", OPTV_BOOLEAN, {0}, FALSE}, {GX_OPTION_ROTATE, "Rotate", OPTV_ANYSTR, {0}, FALSE}, {GX_OPTION_NOPANEL, "NoPanel", OPTV_BOOLEAN, {0}, FALSE}, {GX_OPTION_COLOR_KEY, "ColorKey", OPTV_INTEGER, {0}, FALSE}, {GX_OPTION_OSM_IMG_BUFS, "OSMImageBuffers", OPTV_INTEGER, {0}, FALSE}, {GX_OPTION_OSM_CLR_BUFS, "OSMColorExpBuffers", OPTV_INTEGER, {0}, FALSE}, - {GX_OPTION_CUSTOM_MODE, "CustomMode", OPTV_BOOLEAN, {0}, FALSE}, {GX_OPTION_FBSIZE, "FBSize", OPTV_INTEGER, {0}, FALSE }, {GX_OPTION_PANEL_GEOMETRY, "PanelGeometry", OPTV_STRING, {0}, FALSE }, {-1, NULL, OPTV_NONE, {0}, FALSE} diff --git a/src/amd_gx_driver.c b/src/amd_gx_driver.c index 7548fc7..acb41e1 100644 --- a/src/amd_gx_driver.c +++ b/src/amd_gx_driver.c @@ -624,11 +624,6 @@ GXPreInit(ScrnInfoPtr pScrni, int flags) if (pGeode->exaBfrSz <= 0) pGeode->exaBfrSz = 0; - /* We are going to see if we can get rid of this option */ - - if (xf86ReturnOptValBool(GeodeOptions, GX_OPTION_CUSTOM_MODE, FALSE)) - pGeode->CustomMode = TRUE; - if (pGeode->Panel == TRUE) { if (xf86ReturnOptValBool(GeodeOptions, GX_OPTION_NOPANEL, FALSE)) pGeode->Panel = FALSE; |