diff options
author | GuoHua Chen <chenguohua_716@163.com> | 2024-01-11 08:54:45 +0000 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2024-01-18 15:39:53 -0500 |
commit | 8be4f5312e80c0d6617f126b7a0ff26711b87805 (patch) | |
tree | 8b9ab5df79fe6b26e4d45fba7c2ed3721ec358c2 /drivers/gpu/drm/radeon | |
parent | 40d89a92f1c71eb19e2f2099beca02e0feb09df0 (diff) |
drm/radeon: Clean up errors in kv_smc.c
Fix the following errors reported by checkpatch:
ERROR: spaces required around that '=' (ctx:VxW)
Signed-off-by: GuoHua Chen <chenguohua_716@163.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/radeon')
-rw-r--r-- | drivers/gpu/drm/radeon/kv_smc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/radeon/kv_smc.c b/drivers/gpu/drm/radeon/kv_smc.c index c0a59527e7b8..65831cca6730 100644 --- a/drivers/gpu/drm/radeon/kv_smc.c +++ b/drivers/gpu/drm/radeon/kv_smc.c @@ -189,7 +189,7 @@ int kv_copy_bytes_to_smc(struct radeon_device *rdev, if (ret) return ret; - original_data= RREG32(SMC_IND_DATA_0); + original_data = RREG32(SMC_IND_DATA_0); extra_shift = 8 * (4 - byte_count); |