From e6f917dbd9fd98c440f6c941e2f975b2b4f75963 Mon Sep 17 00:00:00 2001 From: Pascal Bauer Date: Tue, 18 Jun 2024 12:54:49 +0000 Subject: [PATCH] change name of "parseVLNV" to "parseIpIdentifier" --- fpga/include/villas/fpga/core.hpp | 2 +- fpga/lib/core.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/fpga/include/villas/fpga/core.hpp b/fpga/include/villas/fpga/core.hpp index bf84cec48..3968b5841 100644 --- a/fpga/include/villas/fpga/core.hpp +++ b/fpga/include/villas/fpga/core.hpp @@ -207,7 +207,7 @@ class CoreFactory : public plugin::Plugin { public: using plugin::Plugin::Plugin; - static std::list parseVLNV(json_t *json_ips); + static std::list parseIpIdentifier(json_t *json_ips); static std::list reorderIps(std::list allIps); static std::list> configureIps(std::list orderedIps, json_t *json_ips, diff --git a/fpga/lib/core.cpp b/fpga/lib/core.cpp index 6530d8311..0033264e5 100644 --- a/fpga/lib/core.cpp +++ b/fpga/lib/core.cpp @@ -37,7 +37,7 @@ static std::list vlnvInitializationOrder = { Vlnv("xilinx.com:ip:axi_iic:"), }; -std::list CoreFactory::parseVLNV(json_t *json_ips) { +std::list CoreFactory::parseIpIdentifier(json_t *json_ips) { // Parse all IP instance names and their VLNV into list `allIps` std::list allIps; @@ -302,7 +302,7 @@ std::list> CoreFactory::make(Card *card, } std::list allIps = - parseVLNV(json_ips); // All IPs available in config + parseIpIdentifier(json_ips); // All IPs available in config std::list orderedIps = reorderIps(allIps); // IPs ordered in initialization order