diff options
author | Adam Jackson <ajax@redhat.com> | 2008-08-19 11:02:31 -0400 |
---|---|---|
committer | Adam Jackson <ajax@redhat.com> | 2008-08-19 11:02:31 -0400 |
commit | 41b68e0dea9305d66bca2fc4ad96db01f5342c6d (patch) | |
tree | 8bea11fe6a5029a375575619dc452530552f4f3b /hw | |
parent | 1f416fba994ed7a7e072a9f0a86b515855ea3bac (diff) |
Remove unused -co option.
What did this even do anyway?
Diffstat (limited to 'hw')
-rw-r--r-- | hw/xfree86/common/xf86Globals.c | 1 | ||||
-rw-r--r-- | hw/xfree86/common/xf86Init.c | 6 | ||||
-rw-r--r-- | hw/xfree86/common/xf86Priv.h | 1 |
3 files changed, 0 insertions, 8 deletions
diff --git a/hw/xfree86/common/xf86Globals.c b/hw/xfree86/common/xf86Globals.c index cc568d6bc..23626296a 100644 --- a/hw/xfree86/common/xf86Globals.c +++ b/hw/xfree86/common/xf86Globals.c @@ -159,7 +159,6 @@ const char *xf86VisualNames[] = { /* Parameters set only from the command line */ char *xf86ServerName = "no-name"; Bool xf86fpFlag = FALSE; -Bool xf86coFlag = FALSE; Bool xf86sFlag = FALSE; Bool xf86bsEnableFlag = FALSE; Bool xf86bsDisableFlag = FALSE; diff --git a/hw/xfree86/common/xf86Init.c b/hw/xfree86/common/xf86Init.c index 7e027e386..0db67762f 100644 --- a/hw/xfree86/common/xf86Init.c +++ b/hw/xfree86/common/xf86Init.c @@ -1579,12 +1579,6 @@ ddxProcessArgument(int argc, char **argv, int i) xf86fpFlag = TRUE; return 0; } - /* Notice the -co flag, but allow it to pass to the dix layer */ - if (!strcmp(argv[i], "-co")) - { - xf86coFlag = TRUE; - return 0; - } /* Notice the -bs flag, but allow it to pass to the dix layer */ if (!strcmp(argv[i], "-bs")) { diff --git a/hw/xfree86/common/xf86Priv.h b/hw/xfree86/common/xf86Priv.h index e40c951cb..159dfb26b 100644 --- a/hw/xfree86/common/xf86Priv.h +++ b/hw/xfree86/common/xf86Priv.h @@ -52,7 +52,6 @@ extern Bool xf86VidModeDisabled; extern Bool xf86VidModeAllowNonLocal; #endif extern Bool xf86fpFlag; -extern Bool xf86coFlag; extern Bool xf86sFlag; extern Bool xf86bsEnableFlag; extern Bool xf86bsDisableFlag; |