diff options
author | Xiang Liu <xiang.liu@amd.com> | 2025-03-24 17:19:54 +0800 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2025-03-26 17:44:41 -0400 |
commit | aedc92be9621b31ccc90d79ee7f831944e6bfbef (patch) | |
tree | 9eb6dcf4af7deade9952f49ed5085ba302473338 /drivers/gpu/drm/amd/amdgpu/mmhub_v1_8.c | |
parent | cc11dffc14bd2322d92a896a639cc42145401515 (diff) | |
download | linux-aedc92be9621b31ccc90d79ee7f831944e6bfbef.tar.gz linux-aedc92be9621b31ccc90d79ee7f831944e6bfbef.tar.bz2 linux-aedc92be9621b31ccc90d79ee7f831944e6bfbef.zip |
drm/amdgpu: Parse all deferred errors with UMC aca handle
We should only increase the deferred errors in UMC block.
Signed-off-by: Xiang Liu <xiang.liu@amd.com>
Reviewed-by: Hawking Zhang <Hawking.Zhang@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/mmhub_v1_8.c')
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/mmhub_v1_8.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/mmhub_v1_8.c b/drivers/gpu/drm/amd/amdgpu/mmhub_v1_8.c index a54e7b929295..84cde1239ee4 100644 --- a/drivers/gpu/drm/amd/amdgpu/mmhub_v1_8.c +++ b/drivers/gpu/drm/amd/amdgpu/mmhub_v1_8.c @@ -751,7 +751,7 @@ static int mmhub_v1_8_aca_bank_parser(struct aca_handle *handle, struct aca_bank 1ULL); break; case ACA_SMU_TYPE_CE: - bank->aca_err_type = ACA_BANK_ERR_CE_DE_DECODE(bank); + bank->aca_err_type = ACA_ERROR_TYPE_CE; ret = aca_error_cache_log_bank_error(handle, &info, bank->aca_err_type, ACA_REG__MISC0__ERRCNT(misc0)); break; |