Commit b0923d5d authored by Sunil Khatri's avatar Sunil Khatri Committed by Alex Deucher

drm/amdgpu: remove ip dump reg_count variable

reg_count is not used and the register count is
directly derived from the array size and hence
removed.
Signed-off-by: default avatarSunil Khatri <sunil.khatri@amd.com>
Acked-by: default avatarChristian König <christian.koenig@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 9243e0e2
...@@ -436,7 +436,6 @@ struct amdgpu_gfx { ...@@ -436,7 +436,6 @@ struct amdgpu_gfx {
/* IP reg dump */ /* IP reg dump */
uint32_t *ip_dump; uint32_t *ip_dump;
uint32_t reg_count;
}; };
struct amdgpu_gfx_ras_reg_entry { struct amdgpu_gfx_ras_reg_entry {
......
...@@ -4592,10 +4592,8 @@ static void gfx_v10_0_alloc_dump_mem(struct amdgpu_device *adev) ...@@ -4592,10 +4592,8 @@ static void gfx_v10_0_alloc_dump_mem(struct amdgpu_device *adev)
if (ptr == NULL) { if (ptr == NULL) {
DRM_ERROR("Failed to allocate memory for IP Dump\n"); DRM_ERROR("Failed to allocate memory for IP Dump\n");
adev->gfx.ip_dump = NULL; adev->gfx.ip_dump = NULL;
adev->gfx.reg_count = 0;
} else { } else {
adev->gfx.ip_dump = ptr; adev->gfx.ip_dump = ptr;
adev->gfx.reg_count = reg_count;
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment