xref: /openbmc/openpower-hw-diags/test/dbus-sim-only.cpp (revision 626270affc0f71eaab89c45c492e6732238fa360)
1 #include <util/dbus.hpp>
2 
3 namespace util
4 {
5 
6 namespace dbus
7 {
8 
getMachineType()9 MachineType getMachineType()
10 {
11     // default to Rainier 2S4U
12     MachineType machineType = MachineType::Rainier_2S4U;
13 
14     return machineType;
15 }
16 
17 } // namespace dbus
18 
19 } // namespace util
20