diff options
| author | chenxuebing <[email protected]> | 2024-01-11 02:10:02 +0000 |
|---|---|---|
| committer | Alex Deucher <[email protected]> | 2024-01-15 23:35:38 +0000 |
| commit | 73888bad4d1f89a8a137f74835c9a0a47c0e133c (patch) | |
| tree | 570c2513b462e9caae310d2a14d8c1cd24955557 /drivers/gpu/drm/amd/amdgpu/amdgpu_rlc.c | |
| parent | drm/amd: Clean up errors in sdma_v2_4.c (diff) | |
| download | kernel-73888bad4d1f89a8a137f74835c9a0a47c0e133c.tar.gz kernel-73888bad4d1f89a8a137f74835c9a0a47c0e133c.zip | |
drm/amdgpu: Clean up errors in amdgpu_rlc.c
Fix the following errors reported by checkpatch:
ERROR: space prohibited before that '++' (ctx:WxB)
Signed-off-by: chenxuebing <[email protected]>
Signed-off-by: Alex Deucher <[email protected]>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu_rlc.c')
| -rw-r--r-- | drivers/gpu/drm/amd/amdgpu/amdgpu_rlc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_rlc.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_rlc.c index 2c3675d91614..db5791e1a7ce 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_rlc.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_rlc.c @@ -241,7 +241,7 @@ void amdgpu_gfx_rlc_setup_cp_table(struct amdgpu_device *adev) table_size = le32_to_cpu(hdr->jt_size); } - for (i = 0; i < table_size; i ++) { + for (i = 0; i < table_size; i++) { dst_ptr[bo_offset + i] = cpu_to_le32(le32_to_cpu(fw_data[table_offset + i])); } |
