From: Shiju Jose Date: Tue, 14 May 2024 14:22:42 +0000 (+0100) Subject: rasdaemon: CXL: Fix uncorrectable macro spelling X-Git-Tag: v0.8.2~27 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=e9337d0b0b0cc2410c4a897881e70a374bbb1ea0;p=users%2Fmchehab%2Frasdaemon.git 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 --- 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" }, };