Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

drm/radeon: Clean up errors in uvd_v1_0.c

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>

authored by

GuoHua Chen and committed by
Alex Deucher
3e9156fb 22dfe0ae

+1 -1
+1 -1
drivers/gpu/drm/radeon/uvd_v1_0.c
··· 142 142 addr = (rdev->uvd.gpu_addr >> 32) & 0xFF; 143 143 WREG32(UVD_LMI_EXT40_ADDR, addr | (0x9 << 16) | (0x1 << 31)); 144 144 145 - WREG32(UVD_FW_START, *((uint32_t*)rdev->uvd.cpu_addr)); 145 + WREG32(UVD_FW_START, *((uint32_t *)rdev->uvd.cpu_addr)); 146 146 147 147 return 0; 148 148 }