drm/ttm: Remove some leftover debug messages.

Signed-off-by: Thomas Hellstrom <thellstrom@vmware.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
This commit is contained in:
Thomas Hellstrom 2010-04-28 11:33:24 +02:00 committed by Dave Airlie
parent 4fa07bf146
commit 5be6eff965

View file

@ -204,7 +204,6 @@ static int __ttm_vt_unlock(struct ttm_lock *lock)
lock->flags &= ~TTM_VT_LOCK; lock->flags &= ~TTM_VT_LOCK;
wake_up_all(&lock->queue); wake_up_all(&lock->queue);
spin_unlock(&lock->lock); spin_unlock(&lock->lock);
printk(KERN_INFO TTM_PFX "vt unlock.\n");
return ret; return ret;
} }
@ -265,10 +264,8 @@ int ttm_vt_lock(struct ttm_lock *lock,
ttm_lock_type, &ttm_vt_lock_remove, NULL); ttm_lock_type, &ttm_vt_lock_remove, NULL);
if (ret) if (ret)
(void)__ttm_vt_unlock(lock); (void)__ttm_vt_unlock(lock);
else { else
lock->vt_holder = tfile; lock->vt_holder = tfile;
printk(KERN_INFO TTM_PFX "vt lock.\n");
}
return ret; return ret;
} }