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 radeon_asic.c

Fix the following errors reported by checkpatch:

ERROR: spaces required around that '||' (ctx:VxE)

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
22dfe0ae 25157b1b

+4 -4
+4 -4
drivers/gpu/drm/radeon/radeon_asic.c
··· 2400 2400 case CHIP_RS880: 2401 2401 rdev->asic = &rs780_asic; 2402 2402 /* 760G/780V/880V don't have UVD */ 2403 - if ((rdev->pdev->device == 0x9616)|| 2404 - (rdev->pdev->device == 0x9611)|| 2405 - (rdev->pdev->device == 0x9613)|| 2406 - (rdev->pdev->device == 0x9711)|| 2403 + if ((rdev->pdev->device == 0x9616) || 2404 + (rdev->pdev->device == 0x9611) || 2405 + (rdev->pdev->device == 0x9613) || 2406 + (rdev->pdev->device == 0x9711) || 2407 2407 (rdev->pdev->device == 0x9713)) 2408 2408 rdev->has_uvd = false; 2409 2409 else