]> bbs.cooldavid.org Git - net-next-2.6.git/commitdiff
drm/nv04-nv40: Fix "conflicting memory types" when saving/restoring VGA fonts.
authorFrancisco Jerez <currojerez@riseup.net>
Fri, 11 Dec 2009 22:44:49 +0000 (23:44 +0100)
committerBen Skeggs <bskeggs@redhat.com>
Wed, 16 Dec 2009 07:04:23 +0000 (17:04 +1000)
Signed-off-by: Francisco Jerez <currojerez@riseup.net>
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
drivers/gpu/drm/nouveau/nv04_display.c

index b47c757ff48b3d9294de8bf6b2efd43cc90281ff..cdddbaa8c450bb18c22e79d30af2eb4628e18f1c 100644 (file)
@@ -103,6 +103,7 @@ nv04_display_create(struct drm_device *dev)
 
        if (nv_two_heads(dev))
                nv04_display_store_initial_head_owner(dev);
+       nouveau_hw_save_vga_fonts(dev, 1);
 
        drm_mode_config_init(dev);
        drm_mode_create_scaling_mode_property(dev);
@@ -203,8 +204,6 @@ nv04_display_create(struct drm_device *dev)
        /* Save previous state */
        NVLockVgaCrtcs(dev, false);
 
-       nouveau_hw_save_vga_fonts(dev, 1);
-
        list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
                crtc->funcs->save(crtc);
 
@@ -246,9 +245,9 @@ nv04_display_destroy(struct drm_device *dev)
        list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
                crtc->funcs->restore(crtc);
 
-       nouveau_hw_save_vga_fonts(dev, 0);
-
        drm_mode_config_cleanup(dev);
+
+       nouveau_hw_save_vga_fonts(dev, 0);
 }
 
 void