diff options
author | Eric Anholt <eric@anholt.net> | 2008-05-22 22:10:25 -0700 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2008-05-22 22:10:25 -0700 |
commit | ced4b4bb0c44b55feb5e32ddb860f1c1dc3bbde5 (patch) | |
tree | 4562c5db016a9b973c43a236daf082a0f9ce2ac0 | |
parent | c81050c0058e32098259b5078515807038beb7d6 (diff) |
[gem] Reduce console spam from debugging.
-rw-r--r-- | src/i830_memory.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/i830_memory.c b/src/i830_memory.c index e8ffce38..16ae23d2 100644 --- a/src/i830_memory.c +++ b/src/i830_memory.c @@ -172,9 +172,7 @@ i830_bind_memory(ScrnInfoPtr pScrn, i830_memory *mem) pin.handle = mem->gem_handle; pin.alignment = mem->alignment; - xf86DrvMsg (pScrn->scrnIndex, X_ERROR, - "alignment %d size %d\n", mem->alignment, (int) mem->size); - + ret = ioctl(pI830->drmSubFD, DRM_IOCTL_I915_GEM_PIN, &pin); if (ret != 0) return FALSE; |