summaryrefslogtreecommitdiff
path: root/hw
diff options
context:
space:
mode:
authorAdam Jackson <ajax@redhat.com>2008-02-01 16:10:23 +1100
committerAdam Jackson <ajax@redhat.com>2008-02-14 07:52:26 +1100
commit2aaf6ac134fa9f61984b1c03929c7b596c971cc8 (patch)
tree1af2a67b0cf1988eb4a0a0aa466a029a568477a4 /hw
parentef77e4c4419703b5a802f3eee92476a43f788a86 (diff)
Don't even attempt to parse -bpp in xfree86 DDX option parsing.
This hasn't been valid since 1999. Get with the times, man.
Diffstat (limited to 'hw')
-rw-r--r--hw/xfree86/common/xf86Init.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/hw/xfree86/common/xf86Init.c b/hw/xfree86/common/xf86Init.c
index d12b6bd6a..a3ddfd0b9 100644
--- a/hw/xfree86/common/xf86Init.c
+++ b/hw/xfree86/common/xf86Init.c
@@ -1566,15 +1566,6 @@ ddxProcessArgument(int argc, char **argv, int i)
xf86sFlag = TRUE;
return 0;
}
- if (!strcmp(argv[i], "-bpp"))
- {
- ErrorF("The -bpp option is no longer supported.\n"
- "\tUse -depth to set the color depth, and use -fbbpp if you really\n"
- "\tneed to force a non-default framebuffer (hardware) pixel format.\n");
- if (++i >= argc)
- return 1;
- return 2;
- }
if (!strcmp(argv[i], "-pixmap24"))
{
xf86Pix24 = Pix24Use24;