summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Jackson <ajax@redhat.com>2008-08-19 10:54:11 -0400
committerAdam Jackson <ajax@redhat.com>2008-08-19 10:54:11 -0400
commit5a72c45d42abc7227c6cf3d14fd7043ea7527c54 (patch)
tree6d92336414e1a693d5778be99cac324832ca00fc
parent9f08ffc557b52e2e8cd54fb692b66700c83d61c6 (diff)
Remove unused -showunresolved option
-rw-r--r--hw/xfree86/common/xf86Globals.c1
-rw-r--r--hw/xfree86/common/xf86Init.c5
-rw-r--r--hw/xfree86/common/xf86Priv.h1
3 files changed, 0 insertions, 7 deletions
diff --git a/hw/xfree86/common/xf86Globals.c b/hw/xfree86/common/xf86Globals.c
index dabcd3dc8..e2c83134c 100644
--- a/hw/xfree86/common/xf86Globals.c
+++ b/hw/xfree86/common/xf86Globals.c
@@ -180,7 +180,6 @@ int xf86Depth = -1;
180rgb xf86Weight = {0, 0, 0}; 180rgb xf86Weight = {0, 0, 0};
181Bool xf86FlipPixels = FALSE; 181Bool xf86FlipPixels = FALSE;
182Gamma xf86Gamma = {0.0, 0.0, 0.0}; 182Gamma xf86Gamma = {0.0, 0.0, 0.0};
183Bool xf86ShowUnresolved = DEFAULT_UNRESOLVED;
184Bool xf86BestRefresh = DEFAULT_BEST_REFRESH; 183Bool xf86BestRefresh = DEFAULT_BEST_REFRESH;
185Bool xf86AllowMouseOpenFail = FALSE; 184Bool xf86AllowMouseOpenFail = FALSE;
186#ifdef XF86VIDMODE 185#ifdef XF86VIDMODE
diff --git a/hw/xfree86/common/xf86Init.c b/hw/xfree86/common/xf86Init.c
index b18944adb..9e89a5fef 100644
--- a/hw/xfree86/common/xf86Init.c
+++ b/hw/xfree86/common/xf86Init.c
@@ -1489,11 +1489,6 @@ ddxProcessArgument(int argc, char **argv, int i)
1489 xf86ConfigFile = argv[i + 1]; 1489 xf86ConfigFile = argv[i + 1];
1490 return 2; 1490 return 2;
1491 } 1491 }
1492 if (!strcmp(argv[i],"-showunresolved"))
1493 {
1494 xf86ShowUnresolved = TRUE;
1495 return 1;
1496 }
1497 if (!strcmp(argv[i],"-probeonly")) 1492 if (!strcmp(argv[i],"-probeonly"))
1498 { 1493 {
1499 xf86ProbeOnly = TRUE; 1494 xf86ProbeOnly = TRUE;
diff --git a/hw/xfree86/common/xf86Priv.h b/hw/xfree86/common/xf86Priv.h
index 10350be01..a58be17d0 100644
--- a/hw/xfree86/common/xf86Priv.h
+++ b/hw/xfree86/common/xf86Priv.h
@@ -73,7 +73,6 @@ extern Bool xf86FlipPixels;
73extern Bool xf86BestRefresh; 73extern Bool xf86BestRefresh;
74extern Gamma xf86Gamma; 74extern Gamma xf86Gamma;
75extern char *xf86ServerName; 75extern char *xf86ServerName;
76extern Bool xf86ShowUnresolved;
77extern struct pci_slot_match xf86IsolateDevice; 76extern struct pci_slot_match xf86IsolateDevice;
78 77
79/* Other parameters */ 78/* Other parameters */