blob: 32e7138f87a816ed8dedff11032d0a5ec8aae154 [file] [log] [blame]
Patrick Williams691668f2023-11-01 08:19:10 -05001/* SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later */
Andrew Jeffery9c766792022-08-10 23:12:49 +09302#ifndef OEM_IBM_FRU_H
3#define OEM_IBM_FRU_H
4
5#ifdef __cplusplus
6extern "C" {
7#endif
8
9#include <stddef.h>
10#include <stdint.h>
11
12enum pldm_oem_ibm_fru_field_type {
Pavithra Barithayadc7d3b52024-02-06 23:46:49 -060013 PLDM_OEM_FRU_FIELD_TYPE_IANA = 0x01,
14 PLDM_OEM_FRU_FIELD_TYPE_RT = 0x02,
15 PLDM_OEM_FRU_FIELD_TYPE_PCIE_CONFIG_SPACE_DATA = 0xfd,
16 PLDM_OEM_FRU_FIELD_TYPE_LOCATION_CODE = 0xfe,
Andrew Jeffery9c766792022-08-10 23:12:49 +093017};
18
19#ifdef __cplusplus
20}
21#endif
22
23#endif /* OEM_IBM_FRU_H */