Skip to content

Commit

Permalink
CR-1224365 Fix examine alveo platform error
Browse files Browse the repository at this point in the history
Signed-off-by: Ryan Chane <[email protected]>
  • Loading branch information
rchane committed Jan 14, 2025
1 parent 5d84ad2 commit 0ab5772
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ ReportAlveoPlatform::writeReport(const xrt_core::device* /*_pDevice*/,
if (!pt_config.empty())
_output << boost::format(" %-23s: %s\n") % "P2P IO space required" % pt_config.get<std::string>("exp_bar"); // Units appended when ptree is created

const boost::property_tree::ptree& clocks = pt_platform.get_child("clocks", empty_ptree);
const boost::property_tree::ptree& clocks = pt_platform.get_child("clocks.clocks", empty_ptree);
if (!clocks.empty()) {
_output << std::endl << "Clocks" << std::endl;
for (const auto& kc : clocks) {
Expand Down

0 comments on commit 0ab5772

Please sign in to comment.