mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-23 19:14:30 +08:00
drm/radeon: check the return value of uvd_v1_0_start in uvd_v1_0_init
No need to try the ring tests if starting the UVD block failed. Signed-off-by: Alex Deucher <alexander.deucher@amd.com> Reviewed-by: Christian König <christian.koenig@amd.com>
This commit is contained in:
parent
2ce529dac7
commit
a7f28f0f55
@ -85,7 +85,9 @@ int uvd_v1_0_init(struct radeon_device *rdev)
|
|||||||
/* raise clocks while booting up the VCPU */
|
/* raise clocks while booting up the VCPU */
|
||||||
radeon_set_uvd_clocks(rdev, 53300, 40000);
|
radeon_set_uvd_clocks(rdev, 53300, 40000);
|
||||||
|
|
||||||
uvd_v1_0_start(rdev);
|
r = uvd_v1_0_start(rdev);
|
||||||
|
if (r)
|
||||||
|
goto done;
|
||||||
|
|
||||||
ring->ready = true;
|
ring->ready = true;
|
||||||
r = radeon_ring_test(rdev, R600_RING_TYPE_UVD_INDEX, ring);
|
r = radeon_ring_test(rdev, R600_RING_TYPE_UVD_INDEX, ring);
|
||||||
|
Loading…
Reference in New Issue
Block a user