summaryrefslogtreecommitdiff
path: root/linux-core/r128_drv.c
diff options
context:
space:
mode:
authorRik Faith <faith@alephnull.com>2000-07-20 05:17:49 +0000
committerRik Faith <faith@alephnull.com>2000-07-20 05:17:49 +0000
commitb4722ec943b3c51e103aaf7c6c77fe7b9c2c716d (patch)
tree4b783de6b311ed256d44678e944c19b30b24f99d /linux-core/r128_drv.c
parent0bd1fa795a06f592c1115b251685b36fec63fed3 (diff)
More fixups for kernel build: EXPORT_SYMTAB warning removal
put_module_symbol clean up of tdfx tdfx_cleanup routine Makefile.kernel fix
Diffstat (limited to 'linux-core/r128_drv.c')
-rw-r--r--linux-core/r128_drv.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/linux-core/r128_drv.c b/linux-core/r128_drv.c
index 125de17d..e78d0231 100644
--- a/linux-core/r128_drv.c
+++ b/linux-core/r128_drv.c
@@ -30,7 +30,9 @@
*/
#include <linux/config.h>
+#ifndef EXPORT_SYMTAB
#define EXPORT_SYMTAB
+#endif
#include "drmP.h"
#include "r128_drv.h"
EXPORT_SYMBOL(r128_init);
@@ -409,7 +411,7 @@ void r128_cleanup(void)
r128_takedown(dev);
#ifdef DRM_AGP
if (dev->agp) {
- /* FIXME -- free other information, too */
+ drm_agp_uninit();
drm_free(dev->agp, sizeof(*dev->agp), DRM_MEM_AGPLISTS);
dev->agp = NULL;
}