Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 982a1348 authored by Alex Xie's avatar Alex Xie Committed by Alex Deucher
Browse files

drm/amdgpu: change pte definitions to 64 bit

parent 35ba15f0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -63,7 +63,7 @@ struct amdgpu_bo_list_entry;
#define AMDGPU_PTE_READABLE	(1ULL << 5)
#define AMDGPU_PTE_WRITEABLE	(1ULL << 6)

#define AMDGPU_PTE_FRAG(x)	((x & 0x1f) << 7)
#define AMDGPU_PTE_FRAG(x)	((x & 0x1fULL) << 7)

#define AMDGPU_PTE_PRT		(1ULL << 63)