diff options
author | Leif Delgass <ldelgass@users.sourceforge.net> | 2002-08-09 23:05:05 +0000 |
---|---|---|
committer | Leif Delgass <ldelgass@users.sourceforge.net> | 2002-08-09 23:05:05 +0000 |
commit | d9558d2e56d072b661c50b6cb1e460ffe28d0f1f (patch) | |
tree | 36e5b18231fb154e7f938da216a2c749a9765766 | |
parent | fdc1194018c1197f298c59c7d33eede45f944ef4 (diff) |
Don't debug print the entire DMA test buffer.
-rw-r--r-- | linux/mach64_dma.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/linux/mach64_dma.c b/linux/mach64_dma.c index ceb4c01d..ae12e09a 100644 --- a/linux/mach64_dma.c +++ b/linux/mach64_dma.c @@ -583,7 +583,11 @@ static int mach64_bm_dma_test( drm_device_t *dev ) DRM_DEBUG( "table[2] = 0x%08x\n", table[2] ); DRM_DEBUG( "table[3] = 0x%08x\n", table[3] ); - for ( i = 0 ; i < count ; i++) { + for ( i = 0 ; i < 8 ; i++) { + DRM_DEBUG( " data[%d] = 0x%08x\n", i, data[i] ); + } + DRM_DEBUG( " ...\n" ); + for ( i = count-6 ; i < count ; i++) { DRM_DEBUG( " data[%d] = 0x%08x\n", i, data[i] ); } |