diff options
Diffstat (limited to 'bsd-core')
-rw-r--r-- | bsd-core/drm_drv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bsd-core/drm_drv.c b/bsd-core/drm_drv.c index a9165a4a..ce683a66 100644 --- a/bsd-core/drm_drv.c +++ b/bsd-core/drm_drv.c @@ -524,12 +524,12 @@ static void drm_unload(struct drm_device *dev) DRM_DEBUG("mtrr_del = %d", retcode); } - drm_vblank_cleanup(dev); - DRM_LOCK(); drm_lastclose(dev); DRM_UNLOCK(); + drm_vblank_cleanup(dev); + /* Clean up PCI resources allocated by drm_bufs.c. We're not really * worried about resource consumption while the DRM is inactive (between * lastclose and firstopen or unload) because these aren't actually |