Commit 22dfe0ae authored by GuoHua Chen's avatar GuoHua Chen Committed by Alex Deucher

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: default avatarGuoHua Chen <chenguohua_716@163.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 25157b1b
...@@ -2400,10 +2400,10 @@ int radeon_asic_init(struct radeon_device *rdev) ...@@ -2400,10 +2400,10 @@ int radeon_asic_init(struct radeon_device *rdev)
case CHIP_RS880: case CHIP_RS880:
rdev->asic = &rs780_asic; rdev->asic = &rs780_asic;
/* 760G/780V/880V don't have UVD */ /* 760G/780V/880V don't have UVD */
if ((rdev->pdev->device == 0x9616)|| if ((rdev->pdev->device == 0x9616) ||
(rdev->pdev->device == 0x9611)|| (rdev->pdev->device == 0x9611) ||
(rdev->pdev->device == 0x9613)|| (rdev->pdev->device == 0x9613) ||
(rdev->pdev->device == 0x9711)|| (rdev->pdev->device == 0x9711) ||
(rdev->pdev->device == 0x9713)) (rdev->pdev->device == 0x9713))
rdev->has_uvd = false; rdev->has_uvd = false;
else else
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment