1 /* SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later */ 2 #ifndef MCTP_DEFINES_H 3 #define MCTP_DEFINES_H 4 5 #ifdef __cplusplus 6 extern "C" { 7 #endif 8 9 #define MCTP_MSG_TYPE_PLDM 1 10 #define MCTP_MAX_NUM_EID 256 11 12 #ifdef __cplusplus 13 } 14 #endif 15 16 #endif // MCTP_DEFINES_H 17