The boards suffer from the following error due to undefined configuration variables:
Configuring for IDS8247 board... ether_fcc.c:75: error: 'CONFIG_SYS_CMXFCR_MASK1' undeclared here (not in a function) ether_fcc.c:76: error: 'CONFIG_SYS_CMXFCR_VALUE1' undeclared here (not in a function) Signed-off-by: Marek Vasut <[email protected]> Cc: Heiko Schocher <[email protected]> Cc: Wolfgang Denk <[email protected]> Cc: Simon Glass <[email protected]> Cc: Mike Frysinger <[email protected]> --- include/configs/IDS8247.h | 4 ++++ include/configs/muas3001.h | 4 ++++ 2 files changed, 8 insertions(+), 0 deletions(-) diff --git a/include/configs/IDS8247.h b/include/configs/IDS8247.h index be778fe..a9c6e06 100644 --- a/include/configs/IDS8247.h +++ b/include/configs/IDS8247.h @@ -147,6 +147,10 @@ #define CONFIG_ETHER_INDEX 1 /* which SCC/FCC channel for ethernet */ #define CONFIG_ETHER_ON_FCC1 #define FCC_ENET +#define CONFIG_SYS_CMXFCR_MASK1 \ + (CMXFCR_FC1 | CMXFCR_RF1CS_MSK | CMXFCR_TF1CS_MSK) +#define CONFIG_SYS_CMXFCR_VALUE1 \ + (CMXFCR_RF1CS_CLK11 | CMXFCR_TF1CS_CLK12) /* * - Rx-CLK is CLK10 diff --git a/include/configs/muas3001.h b/include/configs/muas3001.h index 18bd37e..c552413 100644 --- a/include/configs/muas3001.h +++ b/include/configs/muas3001.h @@ -78,6 +78,10 @@ #define CONFIG_ETHER_ON_FCC1 #define CONFIG_HAS_ETH0 #define FCC_ENET +#define CONFIG_SYS_CMXFCR_MASK1 \ + (CMXFCR_FC1 | CMXFCR_RF1CS_MSK | CMXFCR_TF1CS_MSK) +#define CONFIG_SYS_CMXFCR_VALUE1 \ + (CMXFCR_RF1CS_CLK11 | CMXFCR_TF1CS_CLK12) /* * - Rx-CLK is CLK11 -- 1.7.6.3 _______________________________________________ U-Boot mailing list [email protected] http://lists.denx.de/mailman/listinfo/u-boot

