diff options
author | Christian König <[email protected]> | 2017-11-30 15:41:28 +0100 |
---|---|---|
committer | Alex Deucher <[email protected]> | 2017-12-12 14:46:06 -0500 |
commit | 78eb2f0c719e6427eb5ac36cebe18df0578421d2 (patch) | |
tree | eacc768d8834a7329476093b9547774e3b2d80b2 /drivers/gpu/drm/amd/amdgpu/amdgpu_vm.h | |
parent | 8f19cd78c986fb0eb24a1847931c096ec9e214a5 (diff) |
drm/amdgpu: remove keeping the addr of the VM PDs
No more double house keeping.
Signed-off-by: Christian König <[email protected]>
Reviewed-by: Chunming Zhou <[email protected]>
Signed-off-by: Alex Deucher <[email protected]>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu_vm.h')
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/amdgpu_vm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_vm.h b/drivers/gpu/drm/amd/amdgpu/amdgpu_vm.h index 2f1d0c8c093a..e52bf980669f 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_vm.h +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_vm.h @@ -138,7 +138,7 @@ struct amdgpu_vm_bo_base { struct amdgpu_vm_pt { struct amdgpu_vm_bo_base base; - uint64_t addr; + bool huge; /* array of page tables, one for each directory entry */ struct amdgpu_vm_pt *entries; |