aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/agp
diff options
context:
space:
mode:
authorTijl Coosemans <tijl@FreeBSD.org>2014-11-02 11:28:15 +0000
committerTijl Coosemans <tijl@FreeBSD.org>2014-11-02 11:28:15 +0000
commita8ac51bbb693aa0cb926df3cd03004d3838f6203 (patch)
tree3c1d4279f9e899eb32e7693af97acaff2178c313 /sys/dev/agp
parent4e612cddb918e81e48897f8c3fff2aa8c048eba1 (diff)
downloadsrc-a8ac51bbb693aa0cb926df3cd03004d3838f6203.tar.gz
src-a8ac51bbb693aa0cb926df3cd03004d3838f6203.zip
In agp_amd_bind_page don't flush the AGP TLB. It's done by the calling
function.
Notes
Notes: svn path=/head/; revision=273964
Diffstat (limited to 'sys/dev/agp')
-rw-r--r--sys/dev/agp/agp_amd.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/sys/dev/agp/agp_amd.c b/sys/dev/agp/agp_amd.c
index 3023213cdfd2..a39dec5bec85 100644
--- a/sys/dev/agp/agp_amd.c
+++ b/sys/dev/agp/agp_amd.c
@@ -347,9 +347,6 @@ agp_amd_bind_page(device_t dev, vm_offset_t offset, vm_offset_t physical)
return EINVAL;
sc->gatt->ag_virtual[offset >> AGP_PAGE_SHIFT] = physical | 1;
-
- /* invalidate the cache */
- AGP_FLUSH_TLB(dev);
return 0;
}