xref: /openbmc/pldm/host-bmc/dbus/cpu_core.cpp (revision 06b443ec)
1 #include "cpu_core.hpp"
2 
3 namespace pldm
4 {
5 namespace dbus
6 {
7 
8 uint32_t CPUCore::microcode() const
9 {
10     return sdbusplus::xyz::openbmc_project::Inventory::Item::server::CpuCore::
11         microcode();
12 }
13 
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