diff options
| author | Thomas Hellstrom <thellstrom@vmware.com> | 2010-04-28 11:33:24 +0200 | 
|---|---|---|
| committer | Dave Airlie <airlied@redhat.com> | 2010-05-07 09:20:56 +1000 | 
| commit | 5be6eff965aee22181d7f6210c2c463420e94e03 (patch) | |
| tree | dc1357cb846fbbf6f29ef23797567e502e95812b /drivers/gpu | |
| parent | 4fa07bf146aaee1e8409d35ab08624041c2e3867 (diff) | |
| download | olio-linux-3.10-5be6eff965aee22181d7f6210c2c463420e94e03.tar.xz olio-linux-3.10-5be6eff965aee22181d7f6210c2c463420e94e03.zip  | |
drm/ttm: Remove some leftover debug messages.
Signed-off-by: Thomas Hellstrom <thellstrom@vmware.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/gpu')
| -rw-r--r-- | drivers/gpu/drm/ttm/ttm_lock.c | 5 | 
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/gpu/drm/ttm/ttm_lock.c b/drivers/gpu/drm/ttm/ttm_lock.c index 3d172ef04ee..de41e55a944 100644 --- a/drivers/gpu/drm/ttm/ttm_lock.c +++ b/drivers/gpu/drm/ttm/ttm_lock.c @@ -204,7 +204,6 @@ static int __ttm_vt_unlock(struct ttm_lock *lock)  	lock->flags &= ~TTM_VT_LOCK;  	wake_up_all(&lock->queue);  	spin_unlock(&lock->lock); -	printk(KERN_INFO TTM_PFX "vt unlock.\n");  	return ret;  } @@ -265,10 +264,8 @@ int ttm_vt_lock(struct ttm_lock *lock,  				   ttm_lock_type, &ttm_vt_lock_remove, NULL);  	if (ret)  		(void)__ttm_vt_unlock(lock); -	else { +	else  		lock->vt_holder = tfile; -		printk(KERN_INFO TTM_PFX "vt lock.\n"); -	}  	return ret;  }  |