blob: c97f8b08095a03905bd66ca3c6290014d33975c3 [file] [log] [blame]
Andrew Jeffery9c766792022-08-10 23:12:49 +09301#ifndef OEM_IBM_FRU_H
2#define OEM_IBM_FRU_H
3
4#ifdef __cplusplus
5extern "C" {
6#endif
7
8#include <stddef.h>
9#include <stdint.h>
10
11enum pldm_oem_ibm_fru_field_type {
12 PLDM_OEM_FRU_FIELD_TYPE_IANA = 0X01,
13 PLDM_OEM_FRU_FIELD_TYPE_RT = 0X02,
14 PLDM_OEM_FRU_FIELD_TYPE_LOCATION_CODE = 0XFE,
15};
16
17#ifdef __cplusplus
18}
19#endif
20
21#endif /* OEM_IBM_FRU_H */