ttm_tt_destroy
.ttm_tt_destroy = &amdgpu_ttm_backend_destroy,
.ttm_tt_destroy = i915_ttm_tt_destroy,
void (*ttm_tt_destroy)(struct ttm_device *bdev, struct ttm_tt *ttm);
void ttm_tt_destroy(struct ttm_device *bdev, struct ttm_tt *ttm);
.ttm_tt_destroy = &radeon_ttm_tt_destroy,
.ttm_tt_destroy = ttm_tt_simple_destroy,
.ttm_tt_destroy = ttm_tt_simple_destroy,
ttm_tt_destroy(devs->ttm_dev, bo->ttm);
ttm_tt_destroy(bo->bdev, bo->ttm);
ttm_tt_destroy(bo->bdev, ttm);
bdev->funcs->ttm_tt_destroy(bdev, ttm);
EXPORT_SYMBOL_FOR_TESTS_ONLY(ttm_tt_destroy);