]> www.infradead.org Git - linux.git/commitdiff
efi/cper, cxl: Prefix protocol error struct and function names with cxl_
authorSmita Koralahalli <Smita.KoralahalliChannabasappa@amd.com>
Thu, 23 Jan 2025 08:44:16 +0000 (08:44 +0000)
committerDave Jiang <dave.jiang@intel.com>
Thu, 6 Feb 2025 18:26:40 +0000 (11:26 -0700)
Rename the protocol error struct from struct cper_sec_prot_err to
struct cxl_cper_sec_prot_err and cper_print_prot_err() to
cxl_cper_print_prot_err() to maintain naming consistency. No
functional changes.

Signed-off-by: Smita Koralahalli <Smita.KoralahalliChannabasappa@amd.com>
Reviewed-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Reviewed-by: Ira Weiny <ira.weiny@intel.com>
Reviewed-by: Dave Jiang <dave.jiang@intel.com>
Reviewed-by: Fan Ni <fan.ni@samsung.com>
Reviewed-by: Gregory Price <gourry@gourry.net>
Reviewed-by: Dan Williams <dan.j.williams@intel.com>
Link: https://patch.msgid.link/20250123084421.127697-2-Smita.KoralahalliChannabasappa@amd.com
Signed-off-by: Dave Jiang <dave.jiang@intel.com>
drivers/firmware/efi/cper.c
drivers/firmware/efi/cper_cxl.c
drivers/firmware/efi/cper_cxl.h

index b69e68ef3f02bed94bcaa8cd2a6694959fc1e748..8e5762f7ef2e7876a996684a40920a47ac0b1760 100644 (file)
@@ -624,11 +624,11 @@ cper_estatus_print_section(const char *pfx, struct acpi_hest_generic_data *gdata
                else
                        goto err_section_too_small;
        } else if (guid_equal(sec_type, &CPER_SEC_CXL_PROT_ERR)) {
-               struct cper_sec_prot_err *prot_err = acpi_hest_get_payload(gdata);
+               struct cxl_cper_sec_prot_err *prot_err = acpi_hest_get_payload(gdata);
 
                printk("%ssection_type: CXL Protocol Error\n", newpfx);
                if (gdata->error_data_length >= sizeof(*prot_err))
-                       cper_print_prot_err(newpfx, prot_err);
+                       cxl_cper_print_prot_err(newpfx, prot_err);
                else
                        goto err_section_too_small;
        } else {
index a55771b99a97a193b805861429fd860a6d162314..cbaabcb7382d9e85a0a0b55891a99ac80333e4cd 100644 (file)
@@ -55,7 +55,8 @@ enum {
        USP,    /* CXL Upstream Switch Port */
 };
 
-void cper_print_prot_err(const char *pfx, const struct cper_sec_prot_err *prot_err)
+void cxl_cper_print_prot_err(const char *pfx,
+                            const struct cxl_cper_sec_prot_err *prot_err)
 {
        if (prot_err->valid_bits & PROT_ERR_VALID_AGENT_TYPE)
                pr_info("%s agent_type: %d, %s\n", pfx, prot_err->agent_type,
index 86bfcf7909eca917bb4290ba37b125733465ca97..0e3ab0ba17c36fe0e726daa0da30e131cf863207 100644 (file)
@@ -18,7 +18,7 @@
 #pragma pack(1)
 
 /* Compute Express Link Protocol Error Section, UEFI v2.10 sec N.2.13 */
-struct cper_sec_prot_err {
+struct cxl_cper_sec_prot_err {
        u64 valid_bits;
        u8 agent_type;
        u8 reserved[7];
@@ -61,6 +61,7 @@ struct cper_sec_prot_err {
 
 #pragma pack()
 
-void cper_print_prot_err(const char *pfx, const struct cper_sec_prot_err *prot_err);
+void cxl_cper_print_prot_err(const char *pfx,
+                            const struct cxl_cper_sec_prot_err *prot_err);
 
 #endif //__CPER_CXL_