diff options
author | Adam Jackson <ajax@benzedrine.nwnk.net> | 2007-03-25 22:01:34 -0400 |
---|---|---|
committer | Adam Jackson <ajax@benzedrine.nwnk.net> | 2007-03-25 22:01:34 -0400 |
commit | 2e3cc861f90415f200826bc71dab6298d759c42b (patch) | |
tree | cf53d00bd5fe1908128c9ee5d485d3c85a79d938 /hw/xfree86/i2c/xf86i2cmodule.c | |
parent | e88fa75c9b468b88bb7b87b1da235c6eb2fe8164 (diff) |
Since ddc, i2c, and ramdac are in core now, remove their ModuleData stubs.
Diffstat (limited to 'hw/xfree86/i2c/xf86i2cmodule.c')
-rw-r--r-- | hw/xfree86/i2c/xf86i2cmodule.c | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/hw/xfree86/i2c/xf86i2cmodule.c b/hw/xfree86/i2c/xf86i2cmodule.c deleted file mode 100644 index 3c6d313c7..000000000 --- a/hw/xfree86/i2c/xf86i2cmodule.c +++ /dev/null @@ -1,36 +0,0 @@ -/* (c) Itai Nahshon - * - * This code is derived from and inspired by the I2C driver - * from the Linux kernel. - * (c) 1998 Gerd Knorr <kraxel@cs.tu-berlin.de> - */ - -#ifdef HAVE_XORG_CONFIG_H -#include <xorg-config.h> -#endif - -#include "xf86Module.h" - -static MODULESETUPPROTO(i2cSetup); - -static XF86ModuleVersionInfo i2cVersRec = -{ - "i2c", - MODULEVENDORSTRING, - MODINFOSTRING1, - MODINFOSTRING2, - XORG_VERSION_CURRENT, - 1, 2, 0, - ABI_CLASS_VIDEODRV, /* This needs the video driver ABI */ - ABI_VIDEODRV_VERSION, - MOD_CLASS_NONE, - {0,0,0,0} -}; - -_X_EXPORT XF86ModuleData i2cModuleData = { &i2cVersRec, i2cSetup, NULL }; - -static pointer -i2cSetup(pointer module, pointer opts, int *errmaj, int *errmin) { -/* ErrorF("i2cSetup\n"); */ - return (pointer)1; -} |