From ced4b4bb0c44b55feb5e32ddb860f1c1dc3bbde5 Mon Sep 17 00:00:00 2001 From: Eric Anholt Date: Thu, 22 May 2008 22:10:25 -0700 Subject: [PATCH] [gem] Reduce console spam from debugging. --- src/i830_memory.c | 4 +--- 1 file changed, 1 insertion(+), 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;