silence the 'using AGP/PCI' string unless VIA_DEBUG is used.

This commit is contained in:
Alan Hourihane 2005-01-21 09:50:48 +00:00
parent fa15f6c840
commit e51b0b1d30

View file

@ -78,12 +78,15 @@ via_alloc_dma_buffer(viaContextPtr vmesa)
vmesa->useAgp =
( 0 == drmCommandWrite(vmesa->driFd, DRM_VIA_DMA_INIT,
&init, sizeof(init)));
if (vmesa->useAgp)
printf("unichrome_dri.so: Using AGP.\n");
else
printf("unichrome_dri.so: Using PCI.\n");
if (VIA_DEBUG) {
if (vmesa->useAgp)
fprintf(stderr, "unichrome_dri.so: Using AGP.\n");
else
fprintf(stderr, "unichrome_dri.so: Using PCI.\n");
fprintf(stderr, "%s - out\n", __FUNCTION__);
}
if (VIA_DEBUG) fprintf(stderr, "%s - out\n", __FUNCTION__);
return ((vmesa->dma) ? GL_TRUE : GL_FALSE);
}