diff options
author | RĂ©mi Cardona <remi@gentoo.org> | 2008-11-14 13:55:52 +0100 |
---|---|---|
committer | Carl Worth <cworth@cworth.org> | 2009-03-31 17:04:15 -0700 |
commit | 79aebcb7f6b7f0bed6cdce34e2e3086dc6bf9b3c (patch) | |
tree | 96de9ab5db425af60c8157a7f1c350a5c682432d /src | |
parent | 3afc0d100c6897f9d17756043e92a3e6cccc099f (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.
(cherry picked from commit b345b4e6adf00f8b2626e5c2563fc159e2295cc5)
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.am | 6 | ||||
-rw-r--r-- | src/i810.h | 1 | ||||
-rw-r--r-- | src/i810_driver.c | 19 |
3 files changed, 1 insertions, 25 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index e05dbaba..ad87afcc 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -220,9 +220,3 @@ if XVMC intel_drv_la_SOURCES += \ $(INTEL_XVMC_SRCS) endif - -install-data-local: install-intel_drv_laLTLIBRARIES - (cd $(DESTDIR)$(intel_drv_ladir) && rm -f i810_drv.so && ln -s intel_drv.so i810_drv.so) - -uninstall-local: - (cd $(DESTDIR)$(intel_drv_ladir) && rm -f i810_drv.so) @@ -70,7 +70,6 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. #define I810_VERSION 4000 #define I810_NAME "intel" #define I810_DRIVER_NAME "intel" -#define I810_LEGACY_DRIVER_NAME "i810" #define INTEL_VERSION_MAJOR PACKAGE_VERSION_MAJOR #define INTEL_VERSION_MINOR PACKAGE_VERSION_MINOR 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; } |