summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/radeon/r600.c
diff options
context:
space:
mode:
authorAlex Deucher <alexdeucher@gmail.com>2010-02-11 17:00:13 +0100
committerDave Airlie <airlied@redhat.com>2010-02-18 05:32:53 +0100
commit93f319d31cc42a77bd5e953e861a8f2bfb277ad1 (patch)
treed74c401a473bda0fb3f17797c340e9c904e86a62 /drivers/gpu/drm/radeon/r600.c
parentdrm/radeon/kms: remove HDP flushes from fence emit (v2) (diff)
downloadlinux-93f319d31cc42a77bd5e953e861a8f2bfb277ad1.tar.xz
linux-93f319d31cc42a77bd5e953e861a8f2bfb277ad1.zip
drm/radeon/kms: remove unused r600_gart_clear_page
r6xx/r7xx use the rs600 variant. This old one just confuses things. Signed-off-by: Alex Deucher <alexdeucher@gmail.com> Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/radeon/r600.c')
-rw-r--r--drivers/gpu/drm/radeon/r600.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/drivers/gpu/drm/radeon/r600.c b/drivers/gpu/drm/radeon/r600.c
index f040ee6755d7..a865946d2d08 100644
--- a/drivers/gpu/drm/radeon/r600.c
+++ b/drivers/gpu/drm/radeon/r600.c
@@ -353,18 +353,6 @@ void r600_hpd_fini(struct radeon_device *rdev)
/*
* R600 PCIE GART
*/
-int r600_gart_clear_page(struct radeon_device *rdev, int i)
-{
- void __iomem *ptr = (void *)rdev->gart.table.vram.ptr;
- u64 pte;
-
- if (i < 0 || i > rdev->gart.num_gpu_pages)
- return -EINVAL;
- pte = 0;
- writeq(pte, ((void __iomem *)ptr) + (i * 8));
- return 0;
-}
-
void r600_pcie_gart_tlb_flush(struct radeon_device *rdev)
{
unsigned i;