aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/nouveau/nv04_display.c
diff options
context:
space:
mode:
authorFrancisco Jerez <currojerez@riseup.net>2010-07-19 20:33:16 -0400
committerBen Skeggs <bskeggs@redhat.com>2010-07-25 21:42:34 -0400
commitd06ab841d14f3747823e88e5172047367e051a32 (patch)
tree943ac7e4984878bbf3d9bd4c5a9700f78d365f42 /drivers/gpu/drm/nouveau/nv04_display.c
parent6d416d80f720f71e2dfe903d672bcca071822538 (diff)
drm/nouveau: Remove useless CRTC_OWNER logging.
Signed-off-by: Francisco Jerez <currojerez@riseup.net> Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/nouveau/nv04_display.c')
-rw-r--r--drivers/gpu/drm/nouveau/nv04_display.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/drivers/gpu/drm/nouveau/nv04_display.c b/drivers/gpu/drm/nouveau/nv04_display.c
index b35b7ed0833b..93200da8f2d3 100644
--- a/drivers/gpu/drm/nouveau/nv04_display.c
+++ b/drivers/gpu/drm/nouveau/nv04_display.c
@@ -81,8 +81,6 @@ nv04_display_store_initial_head_owner(struct drm_device *dev)
81 } 81 }
82 82
83ownerknown: 83ownerknown:
84 NV_INFO(dev, "Initial CRTC_OWNER is %d\n", dev_priv->crtc_owner);
85
86 /* we need to ensure the heads are not tied henceforth, or reading any 84 /* we need to ensure the heads are not tied henceforth, or reading any
87 * 8 bit reg on head B will fail 85 * 8 bit reg on head B will fail
88 * setting a single arbitrary head solves that */ 86 * setting a single arbitrary head solves that */
@@ -244,11 +242,8 @@ nv04_display_restore(struct drm_device *dev)
244 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) 242 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
245 crtc->funcs->restore(crtc); 243 crtc->funcs->restore(crtc);
246 244
247 if (nv_two_heads(dev)) { 245 if (nv_two_heads(dev))
248 NV_INFO(dev, "Restoring CRTC_OWNER to %d.\n",
249 dev_priv->crtc_owner);
250 NVSetOwner(dev, dev_priv->crtc_owner); 246 NVSetOwner(dev, dev_priv->crtc_owner);
251 }
252 247
253 NVLockVgaCrtcs(dev, true); 248 NVLockVgaCrtcs(dev, true);
254} 249}