From e9337d0b0b0cc2410c4a897881e70a374bbb1ea0 Mon Sep 17 00:00:00 2001 From: Shiju Jose Date: Tue, 14 May 2024 15:22:42 +0100 Subject: [PATCH] rasdaemon: CXL: Fix uncorrectable macro spelling Fix the macro (CXL_GMER_EVT_DESC_UNCORECTABLE_EVENT) spelling . Uncorrectable is spelled with two r's. Signed-off-by: Shiju Jose Signed-off-by: Mauro Carvalho Chehab --- ras-cxl-handler.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ras-cxl-handler.c b/ras-cxl-handler.c index 037c19c..8641e38 100644 --- a/ras-cxl-handler.c +++ b/ras-cxl-handler.c @@ -727,12 +727,12 @@ static const struct cxl_event_flags cxl_dpa_flags[] = { * General Media Event Record - GMER * CXL rev 3.0 Section 8.2.9.2.1.1; Table 8-43 */ -#define CXL_GMER_EVT_DESC_UNCORECTABLE_EVENT BIT(0) +#define CXL_GMER_EVT_DESC_UNCORRECTABLE_EVENT BIT(0) #define CXL_GMER_EVT_DESC_THRESHOLD_EVENT BIT(1) #define CXL_GMER_EVT_DESC_POISON_LIST_OVERFLOW BIT(2) static const struct cxl_event_flags cxl_gmer_event_desc_flags[] = { - { .bit = CXL_GMER_EVT_DESC_UNCORECTABLE_EVENT, .flag = "UNCORRECTABLE EVENT" }, + { .bit = CXL_GMER_EVT_DESC_UNCORRECTABLE_EVENT, .flag = "UNCORRECTABLE EVENT" }, { .bit = CXL_GMER_EVT_DESC_THRESHOLD_EVENT, .flag = "THRESHOLD EVENT" }, { .bit = CXL_GMER_EVT_DESC_POISON_LIST_OVERFLOW, .flag = "POISON LIST OVERFLOW" }, };