drm crtc: add forgotten idr cleanup functions
authorSascha Hauer <s.hauer@pengutronix.de>
Wed, 1 Feb 2012 10:38:20 +0000 (11:38 +0100)
committerDave Airlie <airlied@redhat.com>
Fri, 3 Feb 2012 09:49:27 +0000 (09:49 +0000)
drm_mode_config_init initializes the idr with idr_init, so
add the missing counterparts in drm_mode_config_cleanup.

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Signed-off-by: Dave Airlie <airlied@redhat.com>
drivers/gpu/drm/drm_crtc.c

index 5e818a8..c1a0d34 100644 (file)
@@ -1048,6 +1048,9 @@ void drm_mode_config_cleanup(struct drm_device *dev)
                                 head) {
                plane->funcs->destroy(plane);
        }
+
+       idr_remove_all(&dev->mode_config.crtc_idr);
+       idr_destroy(&dev->mode_config.crtc_idr);
 }
 EXPORT_SYMBOL(drm_mode_config_cleanup);