Skip to content
Snippets Groups Projects
Commit 0077ab56 authored by Ruben Rodriguez's avatar Ruben Rodriguez
Browse files

linux: fix error no return statement

parent 11865adc
No related branches found
No related tags found
No related merge requests found
Pipeline #910 passed
...@@ -186,15 +186,6 @@ diff -ru a/drivers/gpu/drm/amd/amdgpu/gfx_v10_0.c b/drivers/gpu/drm/amd/amdgpu/g ...@@ -186,15 +186,6 @@ diff -ru a/drivers/gpu/drm/amd/amdgpu/gfx_v10_0.c b/drivers/gpu/drm/amd/amdgpu/g
release_firmware(adev->gfx.pfp_fw); release_firmware(adev->gfx.pfp_fw);
adev->gfx.pfp_fw = NULL; adev->gfx.pfp_fw = NULL;
release_firmware(adev->gfx.me_fw); release_firmware(adev->gfx.me_fw);
@@ -4510,8 +4509,6 @@
r = gfx_v10_0_init_microcode(adev);
if (r)
DRM_ERROR("Failed to load gfx firmware!\n");
-
- return r;
}
static int gfx_v10_0_mec_init(struct amdgpu_device *adev)
diff -ru a/drivers/gpu/drm/amd/amdgpu/gfx_v6_0.c b/drivers/gpu/drm/amd/amdgpu/gfx_v6_0.c diff -ru a/drivers/gpu/drm/amd/amdgpu/gfx_v6_0.c b/drivers/gpu/drm/amd/amdgpu/gfx_v6_0.c
--- a/drivers/gpu/drm/amd/amdgpu/gfx_v6_0.c 2021-10-31 16:53:10.000000000 -0400 --- a/drivers/gpu/drm/amd/amdgpu/gfx_v6_0.c 2021-10-31 16:53:10.000000000 -0400
+++ b/drivers/gpu/drm/amd/amdgpu/gfx_v6_0.c 2023-02-22 12:39:10.087598287 -0500 +++ b/drivers/gpu/drm/amd/amdgpu/gfx_v6_0.c 2023-02-22 12:39:10.087598287 -0500
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment