xref: /openbmc/pldm/host-bmc/dbus/cpu_core.cpp (revision 56da5740c70ed46027e21cb55ba4c3541dfdb992)
1  #include "cpu_core.hpp"
2  
3  namespace pldm
4  {
5  namespace dbus
6  {
7  
microcode() const8  uint32_t CPUCore::microcode() const
9  {
10      return sdbusplus::xyz::openbmc_project::Inventory::Item::server::CpuCore::
11          microcode();
12  }
13  
microcode(uint32_t value)14  uint32_t CPUCore::microcode(uint32_t value)
15  {
16      return sdbusplus::xyz::openbmc_project::Inventory::Item::server::CpuCore::
17          microcode(value);
18  }
19  
20  } // namespace dbus
21  } // namespace pldm
22