Fix getBus namespaces in pldm Interface object
Compile was failing when '--with-host-communication-protocol=pldm'
was specified.
Change-Id: If15a583584b761cc42c34154a2c5c4194b84d2a1
Signed-off-by: Chris Cain <cjcain@us.ibm.com>
diff --git a/pldm.hpp b/pldm.hpp
index 7a93066..fb57456 100644
--- a/pldm.hpp
+++ b/pldm.hpp
@@ -56,7 +56,7 @@
std::function<bool(open_power::occ::instanceID, bool)> callBack) :
callBack(callBack),
pldmEventSignal(
- utils::getBus(),
+ open_power::occ::utils::getBus(),
MatchRules::type::signal() +
MatchRules::member("StateSensorEvent") +
MatchRules::path("/xyz/openbmc_project/pldm") +
@@ -64,7 +64,7 @@
std::bind(std::mem_fn(&Interface::sensorEvent), this,
std::placeholders::_1)),
hostStateSignal(
- utils::getBus(),
+ open_power::occ::utils::getBus(),
MatchRules::propertiesChanged("/xyz/openbmc_project/state/host0",
"xyz.openbmc_project.State.Host"),
std::bind(std::mem_fn(&Interface::hostStateEvent), this,