drm/radeon: Clean up errors in uvd_v1_0.c
authorGuoHua Chen <chenguohua_716@163.com>
Thu, 11 Jan 2024 08:26:41 +0000 (08:26 +0000)
committerAlex Deucher <alexander.deucher@amd.com>
Thu, 18 Jan 2024 20:39:18 +0000 (15:39 -0500)
Fix the following errors reported by checkpatch:

ERROR: "(foo*)" should be "(foo *)"

Signed-off-by: GuoHua Chen <chenguohua_716@163.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/radeon/uvd_v1_0.c

index 58557c2263a723f0b353d3f20fcbcf1225c500c9..5684639d20a6430527fc6e816cb79847bd61579c 100644 (file)
@@ -142,7 +142,7 @@ int uvd_v1_0_resume(struct radeon_device *rdev)
        addr = (rdev->uvd.gpu_addr >> 32) & 0xFF;
        WREG32(UVD_LMI_EXT40_ADDR, addr | (0x9 << 16) | (0x1 << 31));
 
-       WREG32(UVD_FW_START, *((uint32_t*)rdev->uvd.cpu_addr));
+       WREG32(UVD_FW_START, *((uint32_t *)rdev->uvd.cpu_addr));
 
        return 0;
 }