summaryrefslogtreecommitdiff
path: root/hw/xfree86/xf8_16bpp/cfb8_16module.c
diff options
context:
space:
mode:
authorAdam Jackson <ajax@nwnk.net>2006-04-04 14:39:06 +0000
committerAdam Jackson <ajax@nwnk.net>2006-04-04 14:39:06 +0000
commit83ea57bcc82f478a7ecdcd6ed73ca4be01cd9c26 (patch)
treeffe00e26c9a07550d178fe58aa1391a602790c23 /hw/xfree86/xf8_16bpp/cfb8_16module.c
parent4c7da861185080d15b3ff4301af4af0e85a71f93 (diff)
Bug #5729: Convert xf8_16bpp to fb. chips(4) users please test.
Diffstat (limited to 'hw/xfree86/xf8_16bpp/cfb8_16module.c')
-rw-r--r--hw/xfree86/xf8_16bpp/cfb8_16module.c41
1 files changed, 0 insertions, 41 deletions
diff --git a/hw/xfree86/xf8_16bpp/cfb8_16module.c b/hw/xfree86/xf8_16bpp/cfb8_16module.c
deleted file mode 100644
index 93f9b0126..000000000
--- a/hw/xfree86/xf8_16bpp/cfb8_16module.c
+++ /dev/null
@@ -1,41 +0,0 @@
-/* $XFree86$ */
-
-#ifdef HAVE_XORG_CONFIG_H
-#include <xorg-config.h>
-#endif
-
-#ifdef XFree86LOADER
-
-#include "xf86Module.h"
-
-static MODULESETUPPROTO(xf8_16bppSetup);
-
-static XF86ModuleVersionInfo VersRec =
-{
- "xf8_16bpp",
- MODULEVENDORSTRING,
- MODINFOSTRING1,
- MODINFOSTRING2,
- XORG_VERSION_CURRENT,
- 1, 0, 0,
- ABI_CLASS_ANSIC, /* Only need the ansic layer */
- ABI_ANSIC_VERSION,
- NULL,
- {0,0,0,0} /* signature, to be patched into the file by a tool */
-};
-
-XF86ModuleData xf8_16bppModuleData = { &VersRec, xf8_16bppSetup, NULL };
-
-static pointer
-xf8_16bppSetup(pointer module, pointer opts, int *errmaj, int *errmin)
-{
- if (!LoadSubModule(module, "cfb", NULL, NULL, NULL, NULL,
- errmaj, errmin))
- return NULL;
- if (!LoadSubModule(module, "cfb16", NULL, NULL, NULL, NULL,
- errmaj, errmin))
- return NULL;
- return (pointer)1; /* non-NULL required to indicate success */
-}
-
-#endif