mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-09 00:00:00 +01:00
change name of "parseVLNV" to "parseIpIdentifier"
Signed-off-by: Pascal Bauer <pascal.bauer@rwth-aachen.de>
This commit is contained in:
parent
ba92d5447f
commit
80fa0429dd
2 changed files with 3 additions and 3 deletions
|
@ -207,7 +207,7 @@ class CoreFactory : public plugin::Plugin {
|
|||
public:
|
||||
using plugin::Plugin::Plugin;
|
||||
|
||||
static std::list<IpIdentifier> parseVLNV(json_t *json_ips);
|
||||
static std::list<IpIdentifier> parseIpIdentifier(json_t *json_ips);
|
||||
static std::list<IpIdentifier> reorderIps(std::list<IpIdentifier> allIps);
|
||||
static std::list<std::shared_ptr<Core>>
|
||||
configureIps(std::list<IpIdentifier> orderedIps, json_t *json_ips,
|
||||
|
|
|
@ -37,7 +37,7 @@ static std::list<Vlnv> vlnvInitializationOrder = {
|
|||
Vlnv("xilinx.com:ip:axi_iic:"),
|
||||
};
|
||||
|
||||
std::list<IpIdentifier> CoreFactory::parseVLNV(json_t *json_ips) {
|
||||
std::list<IpIdentifier> CoreFactory::parseIpIdentifier(json_t *json_ips) {
|
||||
// Parse all IP instance names and their VLNV into list `allIps`
|
||||
std::list<IpIdentifier> allIps;
|
||||
|
||||
|
@ -302,7 +302,7 @@ std::list<std::shared_ptr<Core>> CoreFactory::make(Card *card,
|
|||
}
|
||||
|
||||
std::list<IpIdentifier> allIps =
|
||||
parseVLNV(json_ips); // All IPs available in config
|
||||
parseIpIdentifier(json_ips); // All IPs available in config
|
||||
|
||||
std::list<IpIdentifier> orderedIps =
|
||||
reorderIps(allIps); // IPs ordered in initialization order
|
||||
|
|
Loading…
Add table
Reference in a new issue