pldmtool: Remove IBM specifics from PLDM OEM type According to the PLDM IDs and Codes Specification DSP0245 1.4.0 one of the possible PLDM Types is "OEM Specific" (Reserved for OEM-specific PLDM commands). This is a general code for OEM types and not something IBM specific. Change-Id: I4262e06394feeab82408f967cafd295b27652b44 Signed-off-by: Konstantin Aladyshev <aladyshev22@gmail.com>
diff --git a/pldmtool/pldm_base_cmd.cpp b/pldmtool/pldm_base_cmd.cpp index e40be2e..b2a7577 100644 --- a/pldmtool/pldm_base_cmd.cpp +++ b/pldmtool/pldm_base_cmd.cpp
@@ -24,11 +24,8 @@ std::vector<std::unique_ptr<CommandInterface>> commands; const std::map<const char*, pldm_supported_types> pldmTypes{ - {"base", PLDM_BASE}, {"platform", PLDM_PLATFORM}, {"bios", PLDM_BIOS}, - {"fru", PLDM_FRU}, {"firmware update", PLDM_FWUP}, -#ifdef OEM_IBM - {"oem-ibm", PLDM_OEM}, -#endif + {"base", PLDM_BASE}, {"platform", PLDM_PLATFORM}, {"bios", PLDM_BIOS}, + {"fru", PLDM_FRU}, {"firmware update", PLDM_FWUP}, {"oem", PLDM_OEM}, }; const std::map<const char*, pldm_supported_commands> pldmBaseCmds{