Revert "amdgpu: fix 32bit VA manager max address"
This reverts commit 944f6665de
.
Accidentially pushed an imcomplete patch.
Signed-off-by: Christian König <christian.koenig@amd.com>
main
parent
0c2481edf7
commit
931f01964a
|
@ -271,7 +271,7 @@ int amdgpu_device_initialize(int fd,
|
|||
}
|
||||
|
||||
start = dev->dev_info.virtual_address_offset;
|
||||
max = MIN2(dev->dev_info.virtual_address_max, 0x100000000ULL);
|
||||
max = MIN2(dev->dev_info.virtual_address_max, 0xffffffff);
|
||||
amdgpu_vamgr_init(&dev->vamgr_32, start, max,
|
||||
dev->dev_info.virtual_address_alignment);
|
||||
|
||||
|
|
Loading…
Reference in New Issue