diff options
author | Ran Sun <sunran001@208suo.com> | 2023-08-02 10:35:42 +0300 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2023-08-09 16:43:51 +0300 |
commit | 599f7c8b85b1c9e747d4c6efd14e111c0a3c0d28 (patch) | |
tree | daa6e725e3ae07036de2e52c7907207254b3ba1e | |
parent | 939a392f07e2d553feec97d7345a054586169d0a (diff) | |
download | linux-599f7c8b85b1c9e747d4c6efd14e111c0a3c0d28.tar.xz |
drm/amdgpu: Clean up errors in mxgpu_vi.c
Fix the following errors reported by checkpatch:
ERROR: spaces required around that '-=' (ctx:WxV)
Signed-off-by: Ran Sun <sunran001@208suo.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/mxgpu_vi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/mxgpu_vi.c b/drivers/gpu/drm/amd/amdgpu/mxgpu_vi.c index 288c414babdf..59f53c743362 100644 --- a/drivers/gpu/drm/amd/amdgpu/mxgpu_vi.c +++ b/drivers/gpu/drm/amd/amdgpu/mxgpu_vi.c @@ -334,7 +334,7 @@ static void xgpu_vi_mailbox_send_ack(struct amdgpu_device *adev) break; } mdelay(1); - timeout -=1; + timeout -= 1; reg = RREG32_NO_KIQ(mmMAILBOX_CONTROL); } |