diff options
author | Ran Sun <[email protected]> | 2023-08-02 07:35:42 +0000 |
---|---|---|
committer | Alex Deucher <[email protected]> | 2023-08-09 09:43:51 -0400 |
commit | 599f7c8b85b1c9e747d4c6efd14e111c0a3c0d28 (patch) | |
tree | daa6e725e3ae07036de2e52c7907207254b3ba1e | |
parent | 939a392f07e2d553feec97d7345a054586169d0a (diff) |
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 <[email protected]>
Signed-off-by: Alex Deucher <[email protected]>
-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); } |