Update to the new sdbusplus namespace format
The sdbusplus namespace format was updated in [1]. This updates the
local namespaces to the new format.
[1]: https://github.com/openbmc/sdbusplus/commit/5011340e14da7fc04f8b20721c4631f778200edd
Change-Id: Ic6b874fb86d2ff2192d8067871bd2170696f2b8c
Signed-off-by: Jason M. Bills <jason.m.bills@intel.com>
diff --git a/src/system.cpp b/src/system.cpp
index c5c905e..1ebaf2c 100644
--- a/src/system.cpp
+++ b/src/system.cpp
@@ -61,11 +61,11 @@
stream << std::setw(2) << static_cast<int>(systemInfo->uuid.node[4]);
stream << std::setw(2) << static_cast<int>(systemInfo->uuid.node[5]);
- return sdbusplus::xyz::openbmc_project::Common::server::UUID::uuid(
+ return sdbusplus::server::xyz::openbmc_project::common::UUID::uuid(
stream.str());
}
- return sdbusplus::xyz::openbmc_project::Common::server::UUID::uuid(
+ return sdbusplus::server::xyz::openbmc_project::common::UUID::uuid(
"00000000-0000-0000-0000-000000000000");
}
@@ -145,8 +145,8 @@
smbiosFile.close();
phosphor::logging::log<phosphor::logging::level::ERR>(
"Find non-print char, delete the broken MDRV2 table file!");
- return sdbusplus::xyz::openbmc_project::Inventory::Decorator::
- server::Revision::version(result);
+ return sdbusplus::server::xyz::openbmc_project::inventory::
+ decorator::Revision::version(result);
}
result = tempS;
@@ -155,7 +155,7 @@
}
lg2::info("VERSION INFO - BIOS - {VER}", "VER", result);
- return sdbusplus::xyz::openbmc_project::Inventory::Decorator::server::
+ return sdbusplus::server::xyz::openbmc_project::inventory::decorator::
Revision::version(result);
}