In agp_amd_bind_page don't flush the AGP TLB. It's done by the calling

function.
This commit is contained in:
tijl 2014-11-02 11:28:15 +00:00
parent 8120ba89b2
commit c6908948e3

View File

@ -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;
}