1 // SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later 2 #ifndef LIBPLDM_SRC_DSP_BASE_H 3 #define LIBPLDM_SRC_DSP_BASE_H 4 5 /* Internal functions */ 6 7 #include <libpldm/base.h> 8 9 int pack_pldm_header_errno(const struct pldm_header_info *hdr, 10 struct pldm_msg_hdr *msg); 11 12 int unpack_pldm_header_errno(const struct pldm_msg_hdr *msg, 13 struct pldm_header_info *hdr); 14 15 #endif 16