summaryrefslogtreecommitdiff
path: root/src/mga_halmod.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mga_halmod.c')
-rw-r--r--src/mga_halmod.c42
1 files changed, 0 insertions, 42 deletions
diff --git a/src/mga_halmod.c b/src/mga_halmod.c
deleted file mode 100644
index 94e1f18..0000000
--- a/src/mga_halmod.c
+++ /dev/null
@@ -1,42 +0,0 @@
-/* $XFree86$ */
-#ifdef HAVE_CONFIG_H
-#include "config.h"
-#endif
-
-#include "xf86Module.h"
-
-#ifdef XFree86LOADER
-
-#define HAL_MAJOR_VERSION 1
-#define HAL_MINOR_VERSION 0
-#define HAL_PATCHLEVEL 0
-
-static MODULESETUPPROTO(halSetup);
-
-static XF86ModuleVersionInfo halVersRec =
-{
- "mga_hal",
- MODULEVENDORSTRING,
- MODINFOSTRING1,
- MODINFOSTRING2,
- XORG_VERSION_CURRENT,
- HAL_MAJOR_VERSION, HAL_MINOR_VERSION, HAL_PATCHLEVEL,
- ABI_CLASS_VIDEODRV, /* This is a video driver */
- ABI_VIDEODRV_VERSION,
- MOD_CLASS_NONE,
- {0,0,0,0}
-};
-
-/*
- * This is the module init data.
- * Its name has to be the driver name followed by ModuleData.
- */
-_X_EXPORT XF86ModuleData mga_halModuleData = { &halVersRec, halSetup, NULL };
-
-static pointer
-halSetup(pointer module, pointer opts, int *errmaj, int *errmin)
-{
- return (pointer)1;
-}
-
-#endif /* XFree86LOADER */