diff options
author | Mike Frysinger <vapier@gentoo.org> | 2009-09-02 04:21:16 -0400 |
---|---|---|
committer | Tom Rix <Tom.Rix@windriver.com> | 2009-10-03 09:04:07 -0500 |
commit | 275d49da4a00432dc8706027d2e04ee1270e2bf9 (patch) | |
tree | 424c4d5943b7143bb560234c0fd6c295156b7993 /include | |
parent | 6c507885c766646a66d822feee351e1f2b58d586 (diff) |
Blackfin: enable 64bit printf for nand
Since the NAND code now uses 64bit code, make sure we enable support for
ADI Blackfin boards in printf to avoid the warning:
nand_util.c:45:2: warning: #warning Please define CONFIG_SYS_64BIT_VSPRINTF for correct output!
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/bfin_adi_common.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/configs/bfin_adi_common.h b/include/configs/bfin_adi_common.h index b615c79c84..00bfc6e90b 100644 --- a/include/configs/bfin_adi_common.h +++ b/include/configs/bfin_adi_common.h @@ -87,6 +87,9 @@ # define CONFIG_CMD_SPIBOOTLDR # endif #endif +#ifdef CONFIG_CMD_NAND +# define CONFIG_SYS_64BIT_VSPRINTF +#endif /* * Console Settings |