Initial commit
[xorg_rtime.git] / xorg-server-1.4 / hw / xfree86 / i2c / bt829_module.c
blobc885b8e1057f0e1c20e48eb983d8ea55f2f4431c
1 #ifdef HAVE_XORG_CONFIG_H
2 #include <xorg-config.h>
3 #endif
5 #include "xf86Module.h"
7 static MODULESETUPPROTO(bt829Setup);
9 static XF86ModuleVersionInfo bt829VersRec =
11 "bt829",
12 MODULEVENDORSTRING,
13 MODINFOSTRING1,
14 MODINFOSTRING2,
15 XORG_VERSION_CURRENT,
16 1, 0, 0,
17 ABI_CLASS_VIDEODRV, /* This needs the video driver ABI */
18 ABI_VIDEODRV_VERSION,
19 MOD_CLASS_NONE,
20 {0,0,0,0}
23 _X_EXPORT XF86ModuleData bt829ModuleData = { &bt829VersRec, bt829Setup, NULL };
25 static pointer
26 bt829Setup(pointer module, pointer opts, int *errmaj, int *errmin) {
27 return (pointer)1;