| Kamalkumar Patel | 56da574 | 2024-05-23 04:53:07 -0500 | [diff] [blame] | 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 | ||||