drm/radeon: Clean up errors in radeon_asic.c
authorGuoHua Chen <chenguohua_716@163.com>
Thu, 11 Jan 2024 08:18:34 +0000 (08:18 +0000)
committerAlex Deucher <alexander.deucher@amd.com>
Thu, 18 Jan 2024 20:39:16 +0000 (15:39 -0500)
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>
drivers/gpu/drm/radeon/radeon_asic.c

index 802b5af19261838442a87154447e9e6ab72bd421..b5a0109b2e2c51a07e0674fad0efdd46b356adea 100644 (file)
@@ -2400,10 +2400,10 @@ int radeon_asic_init(struct radeon_device *rdev)
        case CHIP_RS880:
                rdev->asic = &rs780_asic;
                /* 760G/780V/880V don't have UVD */
-               if ((rdev->pdev->device == 0x9616)||
-                   (rdev->pdev->device == 0x9611)||
-                   (rdev->pdev->device == 0x9613)||
-                   (rdev->pdev->device == 0x9711)||
+               if ((rdev->pdev->device == 0x9616) ||
+                   (rdev->pdev->device == 0x9611) ||
+                   (rdev->pdev->device == 0x9613) ||
+                   (rdev->pdev->device == 0x9711) ||
                    (rdev->pdev->device == 0x9713))
                        rdev->has_uvd = false;
                else