diff options
author | RĂ©mi Cardona <remi@gentoo.org> | 2008-11-14 13:55:52 +0100 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2009-03-20 16:31:11 -0700 |
commit | b345b4e6adf00f8b2626e5c2563fc159e2295cc5 (patch) | |
tree | 664e5ba03c307c32872de7f29c8361fe0fd435ce /src/i810_driver.c | |
parent | 48b91e066878db63a1558e4cd3e6d12ff9c49197 (diff) |
clean up man page generation and remove all traces of the i810 driver
The i810 compatibility symlink has been broken since libpciaccess, so just
let it die.
Diffstat (limited to 'src/i810_driver.c')
-rw-r--r-- | src/i810_driver.c | 19 |
1 files changed, 1 insertions, 18 deletions
diff --git a/src/i810_driver.c b/src/i810_driver.c index 6ae388dd..fe4bd626 100644 --- a/src/i810_driver.c +++ b/src/i810_driver.c @@ -472,21 +472,6 @@ static XF86ModuleVersionInfo intelVersRec = { _X_EXPORT XF86ModuleData intelModuleData = { &intelVersRec, i810Setup, NULL }; -static XF86ModuleVersionInfo i810VersRec = { - "i810", - MODULEVENDORSTRING, - MODINFOSTRING1, - MODINFOSTRING2, - XORG_VERSION_CURRENT, - INTEL_VERSION_MAJOR, INTEL_VERSION_MINOR, INTEL_VERSION_PATCH, - ABI_CLASS_VIDEODRV, - ABI_VIDEODRV_VERSION, - MOD_CLASS_VIDEODRV, - {0, 0, 0, 0} -}; - -_X_EXPORT XF86ModuleData i810ModuleData = { &i810VersRec, i810Setup, NULL }; - static pointer i810Setup(pointer module, pointer opts, int *errmaj, int *errmin) { @@ -681,9 +666,7 @@ I810Probe(DriverPtr drv, int flags) * driver, and return if there are none. */ if ((numDevSections = - xf86MatchDevice(I810_DRIVER_NAME, &devSections)) <= 0 && - (numDevSections = - xf86MatchDevice(I810_LEGACY_DRIVER_NAME, &devSections)) <= 0) { + xf86MatchDevice(I810_DRIVER_NAME, &devSections)) <= 0 ) { return FALSE; } |