~ubuntu-branches/ubuntu/precise/xorg-server/precise-updates

« back to all changes in this revision

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

Tags: 2:1.10.1-2
* Build xserver-xorg-core-udeb on hurd-i386.  Thanks, Samuel Thibault!
* Upload to unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
 
5
5
#include "xf86Module.h"
6
6
 
7
 
static MODULESETUPPROTO(uda1380Setup);
8
 
 
9
7
static XF86ModuleVersionInfo uda1380VersRec =
10
8
{
11
9
        "uda1380",
22
20
 
23
21
_X_EXPORT XF86ModuleData uda1380ModuleData = {
24
22
        &uda1380VersRec,
25
 
        uda1380Setup,
 
23
        NULL,
26
24
        NULL
27
25
}; 
28
 
 
29
 
static pointer
30
 
uda1380Setup(pointer module, pointer opts, int *errmaj, int *errmin) {
31
 
   return (pointer)1;
32
 
}