aboutsummaryrefslogtreecommitdiff
path: root/src/mesa/drivers/dri/radeon/radeon_dma.c
diff options
context:
space:
mode:
authorAlex Deucher <alexdeucher@gmail.com>2009-08-17 15:42:19 -0400
committerAlex Deucher <alexdeucher@gmail.com>2009-08-17 15:42:19 -0400
commitc3380ded10200f2df0cfba4abbe9a9eb892f7cbb (patch)
tree5101c340a353a9dfa4bc5d245f3d62250e8e3f0a /src/mesa/drivers/dri/radeon/radeon_dma.c
parentcaf40d5d145185d6a4c3ce8ff7c30ec93c040abd (diff)
radeon: remove RADEON_DEBUG_BO stuff
This stuff was a vestige of the r600 bring up and now mostly serves to periodically break the build.
Diffstat (limited to 'src/mesa/drivers/dri/radeon/radeon_dma.c')
-rw-r--r--src/mesa/drivers/dri/radeon/radeon_dma.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/mesa/drivers/dri/radeon/radeon_dma.c b/src/mesa/drivers/dri/radeon/radeon_dma.c
index 7144abbe004..5e755c51edb 100644
--- a/src/mesa/drivers/dri/radeon/radeon_dma.c
+++ b/src/mesa/drivers/dri/radeon/radeon_dma.c
@@ -185,15 +185,9 @@ void radeonRefillCurrentDmaRegion(radeonContextPtr rmesa, int size)
}
again_alloc:
-#ifdef RADEON_DEBUG_BO
- rmesa->dma.current = radeon_bo_open(rmesa->radeonScreen->bom,
- 0, size, 4, RADEON_GEM_DOMAIN_GTT,
- 0, "dma.current");
-#else
rmesa->dma.current = radeon_bo_open(rmesa->radeonScreen->bom,
0, size, 4, RADEON_GEM_DOMAIN_GTT,
0);
-#endif /* RADEON_DEBUG_BO */
if (!rmesa->dma.current) {
rcommonFlushCmdBuf(rmesa, __FUNCTION__);