Skip to content
Snippets Groups Projects
Commit a05f0f91 authored by Marco Filho's avatar Marco Filho
Browse files

Remove old configFEN function name.

It wasn't supposed to be here. Should be named configFE only.
parent 1c9d6fc5
No related branches found
No related tags found
1 merge request!5Use new API architecture.
...@@ -31,7 +31,7 @@ void VmmTblAPI::acquire(bool acquire) { ...@@ -31,7 +31,7 @@ void VmmTblAPI::acquire(bool acquire) {
} }
void VmmTblAPI::sendAll(bool useConfigCheck) { void VmmTblAPI::sendAll(bool useConfigCheck) {
configFEN(); configFE();
for(int hybrid = 0; hybrid <= HYBRIDS_PER_FEN; hybrid++) { for(int hybrid = 0; hybrid <= HYBRIDS_PER_FEN; hybrid++) {
if (isHybridEnabled(hybrid)) { if (isHybridEnabled(hybrid)) {
configHybrid(hybrid); configHybrid(hybrid);
......
...@@ -17,7 +17,6 @@ class VmmTblAPI : public FrontEndBase { ...@@ -17,7 +17,6 @@ class VmmTblAPI : public FrontEndBase {
public: public:
VmmTblAPI(RMMAPI* rmmApi, int ring, int node, std::string name); VmmTblAPI(RMMAPI* rmmApi, int ring, int node, std::string name);
~VmmTblAPI(); ~VmmTblAPI();
void configFEN();
void configHybrid(int hybrid_index); void configHybrid(int hybrid_index);
bool configVMM(int hybrid_index, int vmm_index, bool enableConfigCheck=false); bool configVMM(int hybrid_index, int vmm_index, bool enableConfigCheck=false);
void fillGlobalRegisters(std::vector<std::string>& global, int hybrid_index, int vmm_index); void fillGlobalRegisters(std::vector<std::string>& global, int hybrid_index, int vmm_index);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment