~ubuntu-branches/ubuntu/intrepid/xserver-xgl/intrepid

« back to all changes in this revision

Viewing changes to hw/xfree86/i2c/tda9885_module.c

  • Committer: Bazaar Package Importer
  • Author(s): Matthew Garrett
  • Date: 2006-02-13 14:21:43 UTC
  • Revision ID: james.westby@ubuntu.com-20060213142143-mad6z9xzem7hzxz9
Tags: upstream-7.0.0
ImportĀ upstreamĀ versionĀ 7.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifdef HAVE_XORG_CONFIG_H
 
2
#include <xorg-config.h>
 
3
#endif
 
4
 
 
5
#include "xf86Module.h"
 
6
 
 
7
static MODULESETUPPROTO(tda9885Setup);
 
8
 
 
9
 
 
10
static XF86ModuleVersionInfo tda9885VersRec =
 
11
{
 
12
        "tda9885",
 
13
        MODULEVENDORSTRING,
 
14
        MODINFOSTRING1,
 
15
        MODINFOSTRING2,
 
16
        XORG_VERSION_CURRENT,
 
17
        1, 0, 0,
 
18
        ABI_CLASS_VIDEODRV,             /* This needs the video driver ABI */
 
19
        ABI_VIDEODRV_VERSION,
 
20
        MOD_CLASS_NONE,
 
21
        {0,0,0,0}
 
22
};
 
23
 
 
24
_X_EXPORT XF86ModuleData tda9885ModuleData = {
 
25
        &tda9885VersRec,
 
26
        tda9885Setup,
 
27
        NULL
 
28
}; 
 
29
 
 
30
static pointer
 
31
tda9885Setup(pointer module, pointer opts, int *errmaj, int *errmin) {
 
32
   return (pointer)1;
 
33
}