diff options
| author | Guchun Chen <[email protected]> | 2023-04-26 03:05:49 +0000 |
|---|---|---|
| committer | Alex Deucher <[email protected]> | 2023-06-09 13:24:02 +0000 |
| commit | 7a4685cdfbdb94f1cf5ea2ddde824d94bf414708 (patch) | |
| tree | 341f53026edb720dc4cb4ebcc8b4e69f83e58b8b /drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.c | |
| parent | drm/amd/display: return status of dmub_srv_get_fw_boot_status (diff) | |
| download | kernel-7a4685cdfbdb94f1cf5ea2ddde824d94bf414708.tar.gz kernel-7a4685cdfbdb94f1cf5ea2ddde824d94bf414708.zip | |
drm/amdgpu: fix a build warning by a typo in amdgpu_gfx.c
This should be a typo when intruducing multi-xx support.
Reported-by: kernel test robot <[email protected]>
Signed-off-by: Guchun Chen <[email protected]>
Cc: Le Ma <[email protected]>
Reviewed-by: Le Ma <[email protected]>
Acked-by: Christian König <[email protected]>
Signed-off-by: Alex Deucher <[email protected]>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.c')
| -rw-r--r-- | drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.c index 60bb4bba1994..2cf1f88fde48 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.c @@ -470,8 +470,8 @@ void amdgpu_gfx_mqd_sw_fini(struct amdgpu_device *adev, int xcc_id) for (i = 0; i < adev->gfx.num_compute_rings; i++) { j = i + xcc_id * adev->gfx.num_compute_rings; - ring = &adev->gfx.compute_ring[i]; - kfree(adev->gfx.mec.mqd_backup[i]); + ring = &adev->gfx.compute_ring[j]; + kfree(adev->gfx.mec.mqd_backup[j]); amdgpu_bo_free_kernel(&ring->mqd_obj, &ring->mqd_gpu_addr, &ring->mqd_ptr); |
