drm/amdgpu: Remove redundant calls of amdgpu_ras_block_late_fini in hdp ras block

Remove redundant calls of amdgpu_ras_block_late_fini in hdp ras block.

Signed-off-by: yipechai <YiPeng.Chai@amd.com>
Reviewed-by: Tao Zhou <tao.zhou1@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
yipechai 2022-02-17 15:02:32 +08:00 committed by Alex Deucher
parent f148c143ef
commit aa8e65dfc7
3 changed files with 2 additions and 5 deletions

View File

@ -26,7 +26,5 @@
void amdgpu_hdp_ras_fini(struct amdgpu_device *adev, struct ras_common_if *ras_block) void amdgpu_hdp_ras_fini(struct amdgpu_device *adev, struct ras_common_if *ras_block)
{ {
if (amdgpu_ras_is_supported(adev, AMDGPU_RAS_BLOCK__HDP) &&
ras_block)
amdgpu_ras_block_late_fini(adev, ras_block);
} }

View File

@ -44,5 +44,4 @@ struct amdgpu_hdp {
}; };
int amdgpu_hdp_ras_late_init(struct amdgpu_device *adev, struct ras_common_if *ras_block); int amdgpu_hdp_ras_late_init(struct amdgpu_device *adev, struct ras_common_if *ras_block);
void amdgpu_hdp_ras_fini(struct amdgpu_device *adev, struct ras_common_if *ras_block);
#endif /* __AMDGPU_HDP_H__ */ #endif /* __AMDGPU_HDP_H__ */

View File

@ -166,7 +166,7 @@ struct amdgpu_hdp_ras hdp_v4_0_ras = {
.type = AMDGPU_RAS_ERROR__MULTI_UNCORRECTABLE, .type = AMDGPU_RAS_ERROR__MULTI_UNCORRECTABLE,
}, },
.hw_ops = &hdp_v4_0_ras_hw_ops, .hw_ops = &hdp_v4_0_ras_hw_ops,
.ras_fini = amdgpu_hdp_ras_fini, .ras_fini = amdgpu_ras_block_late_fini,
}, },
}; };