> -----Original Message-----
> From: amd-gfx [mailto:[email protected]] On Behalf
> Of Rex Zhu
> Sent: Monday, October 09, 2017 2:02 AM
> To: [email protected]
> Cc: Zhu, Rex
> Subject: [PATCH] drm/amdgpu: refine code delete duplicated error handling
> 
> in function amdgpu_ucode_init_bo, when failed, it will
> set load_type to AMDGPU_FW_LOAD_DIRECT.
> 
> Change-Id: Id671b168425dc46331aaf4bd2b734e88b9bfaf3c
> Signed-off-by: Rex Zhu <[email protected]>

Reviewed-by: Alex Deucher <[email protected]>

> ---
>  drivers/gpu/drm/amd/amdgpu/amdgpu_device.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
> b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
> index 9311096..9c87853 100644
> --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
> +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
> @@ -1679,8 +1679,8 @@ static int amdgpu_init(struct amdgpu_device
> *adev)
>       }
> 
>       mutex_lock(&adev->firmware.mutex);
> -     if (amdgpu_ucode_init_bo(adev))
> -             adev->firmware.load_type = AMDGPU_FW_LOAD_DIRECT;
> +     if (adev->firmware.load_type != AMDGPU_FW_LOAD_DIRECT)
> +             amdgpu_ucode_init_bo(adev);
>       mutex_unlock(&adev->firmware.mutex);
> 
>       for (i = 0; i < adev->num_ip_blocks; i++) {
> --
> 1.9.1
> 
> _______________________________________________
> amd-gfx mailing list
> [email protected]
> https://lists.freedesktop.org/mailman/listinfo/amd-gfx
_______________________________________________
amd-gfx mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/amd-gfx

Reply via email to