When enabling NAND support for a board, one must also define CONFIG_SYS_64BIT_VSPRINTF because this is needed in nand_util.c for correct output.
Signed-off-by: Wolfgang Denk <[email protected]> Cc: Stefan Roese <[email protected]> Cc: Reinhard Arlt <[email protected]> --- v2: reposted in context with remaining patches of this series; changed to use common spelling for CPU/board names. include/configs/mecp5123.h | 2 ++ include/configs/mpc5121ads.h | 2 ++ 2 files changed, 4 insertions(+), 0 deletions(-) diff --git a/include/configs/mecp5123.h b/include/configs/mecp5123.h index 0831843..ed3e70f 100644 --- a/include/configs/mecp5123.h +++ b/include/configs/mecp5123.h @@ -187,6 +187,8 @@ #define CONFIG_SYS_MAX_NAND_DEVICE 1 #define NAND_MAX_CHIPS CONFIG_SYS_MAX_NAND_DEVICE +#define CONFIG_SYS_64BIT_VSPRINTF /* needed for nand_util.c */ + /* * Configuration parameters for MPC5121 NAND driver */ diff --git a/include/configs/mpc5121ads.h b/include/configs/mpc5121ads.h index 45a004e..852d7b1 100644 --- a/include/configs/mpc5121ads.h +++ b/include/configs/mpc5121ads.h @@ -211,6 +211,8 @@ #define NAND_MAX_CHIPS CONFIG_SYS_MAX_NAND_DEVICE #define CONFIG_SYS_NAND_SELECT_DEVICE /* driver supports mutipl. chips */ +#define CONFIG_SYS_64BIT_VSPRINTF /* needed for nand_util.c */ + /* * Configuration parameters for MPC5121 NAND driver */ -- 1.6.0.6 _______________________________________________ U-Boot mailing list [email protected] http://lists.denx.de/mailman/listinfo/u-boot

