First import
[xorg_rtime.git] / xorg-server-1.4 / hw / xfree86 / i2c / tda9885_module.c
blob0ce85bba3d85b39087abc9b7e1a8e6b10dff5d2a
1 #ifdef HAVE_XORG_CONFIG_H
2 #include <xorg-config.h>
3 #endif
5 #include "xf86Module.h"
7 static MODULESETUPPROTO(tda9885Setup);
9 static XF86ModuleVersionInfo tda9885VersRec =
11 "tda9885",
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 tda9885ModuleData = {
24 &tda9885VersRec,
25 tda9885Setup,
26 NULL
27 };
29 static pointer
30 tda9885Setup(pointer module, pointer opts, int *errmaj, int *errmin) {
31 return (pointer)1;