add static function, and remove bad attributions
authorDave Airlie <airlied@linux.ie>
Sat, 19 Aug 2006 06:56:03 +0000 (16:56 +1000)
committerDave Airlie <airlied@linux.ie>
Sat, 19 Aug 2006 06:56:03 +0000 (16:56 +1000)
linux-core/drm_bufs.c
linux-core/drm_drv.c

index 2eeb401..eaec611 100644 (file)
@@ -65,8 +65,8 @@ static drm_map_list_t *drm_find_matching_map(drm_device_t *dev,
        return NULL;
 }
 
-int drm_map_handle(drm_device_t *dev, drm_hash_item_t *hash, 
-                  unsigned long user_token, int hashed_handle)
+static int drm_map_handle(drm_device_t *dev, drm_hash_item_t *hash, 
+                         unsigned long user_token, int hashed_handle)
 {
        int use_hashed_handle;
 
index da22700..5ddcd4c 100644 (file)
@@ -50,7 +50,7 @@
 #include "drmP.h"
 #include "drm_core.h"
 
-static void __exit drm_cleanup(drm_device_t * dev);
+static void drm_cleanup(drm_device_t * dev);
 int drm_fb_loaded = 0;
 
 static int drm_version(struct inode *inode, struct file *filp,
@@ -336,7 +336,7 @@ EXPORT_SYMBOL(drm_init);
  *
  * \sa drm_init
  */
-static void __exit drm_cleanup(drm_device_t * dev)
+static void drm_cleanup(drm_device_t * dev)
 {
 
        DRM_DEBUG("\n");
@@ -379,7 +379,7 @@ static void __exit drm_cleanup(drm_device_t * dev)
                DRM_ERROR("Cannot unload module\n");
 }
 
-void __exit drm_exit(struct drm_driver *driver)
+void drm_exit(struct drm_driver *driver)
 {
        int i;
        drm_device_t *dev = NULL;