/* SPDX-License-Identifier: GPL-2.0-only */ /* * UEFI Common Platform Error Record (CPER) support for CXL Section. * * Copyright (C) 2022 Advanced Micro Devices, Inc. * * Author: Smita Koralahalli <[email protected]> */ #ifndef LINUX_CPER_CXL_H #define LINUX_CPER_CXL_H /* CXL Protocol Error Section */ #define CPER_SEC_CXL_PROT_ERR … #pragma pack(1) /* Compute Express Link Protocol Error Section, UEFI v2.10 sec N.2.13 */ struct cper_sec_prot_err { … }; #pragma pack() void cper_print_prot_err(const char *pfx, const struct cper_sec_prot_err *prot_err); #endif //__CPER_CXL_