aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
diff options
context:
space:
mode:
authorOak Zeng <ozeng@amd.com>2018-11-19 16:20:07 -0500
committerAlex Deucher <alexander.deucher@amd.com>2018-11-28 15:55:33 -0500
commit9564f1928ed29b093bb997df9573e8edae61983d (patch)
tree927f2959a789998860ae011e99a0b47f7edef2d0 /drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
parent6585661ddd6a0a47c4d2a70e1441031c294e6de2 (diff)
drm/amdgpu: Use asic specific doorbell index instead of macro definition
ASIC specific doorbell layout is used instead of enum definition Signed-off-by: Oak Zeng <ozeng@amd.com> Suggested-by: Felix Kuehling <Felix.Kuehling@amd.com> Suggested-by: Alex Deucher <alexander.deucher@amd.com> Reviewed-by: Alex Deucher <alexander.deucher@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu_device.c')
-rw-r--r--drivers/gpu/drm/amd/amdgpu/amdgpu_device.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
index a8b1c9c04326..fdbc2c229bc6 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
@@ -532,7 +532,7 @@ static int amdgpu_device_doorbell_init(struct amdgpu_device *adev)
532 adev->doorbell.size = pci_resource_len(adev->pdev, 2); 532 adev->doorbell.size = pci_resource_len(adev->pdev, 2);
533 533
534 adev->doorbell.num_doorbells = min_t(u32, adev->doorbell.size / sizeof(u32), 534 adev->doorbell.num_doorbells = min_t(u32, adev->doorbell.size / sizeof(u32),
535 AMDGPU_DOORBELL_MAX_ASSIGNMENT+1); 535 adev->doorbell_index.max_assignment+1);
536 if (adev->doorbell.num_doorbells == 0) 536 if (adev->doorbell.num_doorbells == 0)
537 return -EINVAL; 537 return -EINVAL;
538 538