From a8a89db945c22251debd55eb6096550d5aaa8836 Mon Sep 17 00:00:00 2001 From: "Mario Limonciello (AMD)" Date: Fri, 15 Aug 2025 14:56:58 -0500 Subject: [PATCH] Remove unnecessary typedef declarations MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit amd_smi_cper.h:32:1: warning: ‘typedef’ was ignored in this declaration Signed-off-by: Mario Limonciello (AMD) [ROCm/amdsmi commit: 3d0ea25af30f02073bdf10bf6c95bc2fd2976a61] --- projects/amdsmi/include/amd_smi/impl/amd_smi_cper.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/projects/amdsmi/include/amd_smi/impl/amd_smi_cper.h b/projects/amdsmi/include/amd_smi/impl/amd_smi_cper.h index 6a9476c075..ef4c0ad7ce 100644 --- a/projects/amdsmi/include/amd_smi/impl/amd_smi_cper.h +++ b/projects/amdsmi/include/amd_smi/impl/amd_smi_cper.h @@ -29,7 +29,7 @@ #define CPER_MAX_OAM_COUNT (8) -typedef enum cper_error_severity { +enum cper_error_severity { CPER_SEV_FATAL_UNCORRECTED = 0, CPER_SEV_FATAL = 1, CPER_SEV_FATAL_CORRECTED = 2, @@ -37,7 +37,7 @@ typedef enum cper_error_severity { CPER_SEV_UNUSED = 10, }; -typedef enum cper_aca_reg { +enum cper_aca_reg { CPER_ACA_REG_CTL_LO = 0, CPER_ACA_REG_CTL_HI = 1, CPER_ACA_REG_STATUS_LO = 2,