summaryrefslogtreecommitdiff
path: root/shared/radeon.h
diff options
context:
space:
mode:
authorMichel Daenzer <michel@daenzer.net>2003-08-26 15:44:01 +0000
committerMichel Daenzer <michel@daenzer.net>2003-08-26 15:44:01 +0000
commit062751ac472b2721bed0cd1ee48a3ae7d327ff07 (patch)
tree8f06a7fe6f51e14d34bae4add2df854c6f6398c8 /shared/radeon.h
parent963ad33cb6b85189f3385bcba46905b6d4d329db (diff)
Remove artificial PCI GART limitations, rename AGP to GART where
appropriate
Diffstat (limited to 'shared/radeon.h')
-rw-r--r--shared/radeon.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/shared/radeon.h b/shared/radeon.h
index 7fe08ea8..a0531f4c 100644
--- a/shared/radeon.h
+++ b/shared/radeon.h
@@ -68,11 +68,11 @@
* 1.5 - Add r200 packets to cmdbuf ioctl
* - Add r200 function to init ioctl
* - Add 'scalar2' instruction to cmdbuf
- * 1.6 - Add static agp memory manager
+ * 1.6 - Add static GART memory manager
* Add irq handler (won't be turned on unless X server knows to)
* Add irq ioctls and irq_active getparam.
* Add wait command for cmdbuf ioctl
- * Add agp offset query for getparam
+ * Add GART offset query for getparam
* 1.7 - Add support for cube map registers: R200_PP_CUBIC_FACES_[0..5]
* and R200_PP_CUBIC_OFFSET_F1_[0..5].
* Added packets R200_EMIT_PP_CUBIC_FACES_[0..5] and
@@ -113,7 +113,7 @@
/* When a client dies:
* - Check for and clean up flipped page state
- * - Free any alloced agp memory.
+ * - Free any alloced GART memory.
*
* DRM infrastructure takes care of reclaiming dma buffers.
*/
@@ -124,7 +124,7 @@ do { \
if ( dev_priv->page_flipping ) { \
radeon_do_cleanup_pageflip( dev ); \
} \
- radeon_mem_release( filp, dev_priv->agp_heap ); \
+ radeon_mem_release( filp, dev_priv->gart_heap ); \
radeon_mem_release( filp, dev_priv->fb_heap ); \
} \
} while (0)