summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.org.uk>2009-09-11 15:51:39 +0100
committerThomas White <taw@bitwiz.org.uk>2009-09-11 15:51:39 +0100
commit3bc55d4f6b0a95637d85188782811fef600010eb (patch)
tree53e6f8deecb40844f6a1045c49eeaf57a4f54682
parentd91c2881159e177d1edc6ffe916c93050b7c0ae2 (diff)
Reduce debug
This removes some unnecessary and unhelpful log messages.
-rw-r--r--src/glamo-kms-driver.c10
1 files changed, 1 insertions, 9 deletions
diff --git a/src/glamo-kms-driver.c b/src/glamo-kms-driver.c
index b2cfa7a..34c7baf 100644
--- a/src/glamo-kms-driver.c
+++ b/src/glamo-kms-driver.c
@@ -302,15 +302,11 @@ static Bool GlamoKMSCreateScreenResources(ScreenPtr pScreen)
if (!GlamoKMSExaMakeFullyFledged(rootPixmap, -1, -1, -1, -1, -1))
FatalError("Couldn't adjust screen pixmap\n");
- xf86DrvMsg(pScrn->scrnIndex, X_INFO, "Adding framebuffer....!\n");
-
- xf86DrvMsg(pScrn->scrnIndex, X_INFO, "%i %i %i %i %i %i\n",
+ xf86DrvMsg(pScrn->scrnIndex, X_INFO, "Adding FB: %i %i %i %i %i %i\n",
pGlamo->drm_fd, pScrn->virtualX, pScrn->virtualY,
pScrn->depth, pScrn->bitsPerPixel,
pScrn->displayWidth * pScrn->bitsPerPixel / 8);
- xf86DrvMsg(pScrn->scrnIndex, X_INFO, "rootPixmap = %p\n", (void *)rootPixmap);
-
drmModeAddFB(pGlamo->drm_fd,
pScrn->virtualX,
pScrn->virtualY,
@@ -319,14 +315,10 @@ static Bool GlamoKMSCreateScreenResources(ScreenPtr pScreen)
pScrn->displayWidth * pScrn->bitsPerPixel / 8,
driGetPixmapHandle(rootPixmap, &flags), &pGlamo->fb_id);
- xf86DrvMsg(pScrn->scrnIndex, X_INFO, "Done\n");
-
GlamoKMSAdjustFrame(pScrn->scrnIndex,
pScrn->frameX0, pScrn->frameY0,
0);
- xf86DrvMsg(pScrn->scrnIndex, X_INFO, "Finished\n");
-
return ret;
}