drm/radeon: OLAND boards don't have VCE
Disable it on those boards. No functional change, this just removes the message about VCE failing to initialize. Bug: https://bugzilla.kernel.org/show_bug.cgi?id=197327 Reviewed-by: Christian König <christian.koenig@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
@@ -2478,6 +2478,9 @@ int radeon_asic_init(struct radeon_device *rdev)
|
||||
if (rdev->family == CHIP_HAINAN) {
|
||||
rdev->has_uvd = false;
|
||||
rdev->has_vce = false;
|
||||
} else if (rdev->family == CHIP_OLAND) {
|
||||
rdev->has_uvd = true;
|
||||
rdev->has_vce = false;
|
||||
} else {
|
||||
rdev->has_uvd = true;
|
||||
rdev->has_vce = true;
|
||||
|
||||
Reference in New Issue
Block a user