# HG changeset patch # User Florian Pose # Date 1488555360 -3600 # Node ID b9cda70ec8b079c9657e0741a67f89e1d5398fa7 # Parent 5d7a83195c80e129fcd81dd6f0842a54438c0b1c Using EC_MAX_PORTS. diff -r 5d7a83195c80 -r b9cda70ec8b0 tool/CommandCrc.cpp --- a/tool/CommandCrc.cpp Fri Mar 03 16:00:35 2017 +0100 +++ b/tool/CommandCrc.cpp Fri Mar 03 16:36:00 2017 +0100 @@ -67,7 +67,6 @@ /****************************************************************************/ -#define NUM_PORTS (4) #define REG_SIZE (20) void CommandCrc::execute(const StringVector &args) @@ -124,13 +123,13 @@ } cout << " |"; - for (unsigned int port = 0; port < NUM_PORTS; port++) { + for (unsigned int port = 0; port < EC_MAX_PORTS; port++) { cout << "Port " << port << " |"; } cout << endl; cout << " |"; - for (unsigned int port = 0; port < NUM_PORTS; port++) { + for (unsigned int port = 0; port < EC_MAX_PORTS; port++) { cout << "CRC PHY FWD LNK|"; } cout << endl;