From: Srinivasan Shanmugam Date: Thu, 18 Jan 2024 03:14:42 +0000 (+0530) Subject: drm/amdgpu: Cleanup inconsistent indenting in 'amdgpu_gfx_enable_kcq()' X-Git-Tag: v6.9-rc1~126^2~22^2~145 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=be91a828d08a4e2c92b4c544008fbcbc3e3f0e28;p=thirdparty%2Fkernel%2Flinux.git drm/amdgpu: Cleanup inconsistent indenting in 'amdgpu_gfx_enable_kcq()' Fixes the below: drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.c:645 amdgpu_gfx_enable_kcq() warn: inconsistent indenting Cc: Le Ma Cc: Hawking Zhang Cc: Christian König Cc: Alex Deucher Signed-off-by: Srinivasan Shanmugam Reviewed-by: Le Ma Signed-off-by: Alex Deucher --- diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.c index b9674c57c4365..eb03f2d7b607a 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.c @@ -642,8 +642,8 @@ int amdgpu_gfx_enable_kcq(struct amdgpu_device *adev, int xcc_id) kiq->pmf->kiq_set_resources(kiq_ring, queue_mask); for (i = 0; i < adev->gfx.num_compute_rings; i++) { j = i + xcc_id * adev->gfx.num_compute_rings; - kiq->pmf->kiq_map_queues(kiq_ring, - &adev->gfx.compute_ring[j]); + kiq->pmf->kiq_map_queues(kiq_ring, + &adev->gfx.compute_ring[j]); } r = amdgpu_ring_test_helper(kiq_ring);