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
Christian König 2017-11-09 10:36:05 +01:00
parent 0c2481edf7
commit 931f01964a
1 changed files with 1 additions and 1 deletions

View File

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