diff options
author | Sandeep Paulraj | 2009-10-10 10:19:20 -0400 |
---|---|---|
committer | Tom Rix | 2009-10-18 16:52:53 -0500 |
commit | b8d0aa0c78b8c0fa51acada3c486b81085924b53 (patch) | |
tree | 0a6de7752278a5bf77bfcf8c5ddea0baa55665b3 | |
parent | 86a725b9c8b829c217be90e590f3ca2c91fa1dca (diff) |
TI DaVinci DM365: Add Config option for 64 bit Support
Adding the CONFIG_SYS_64BIT_VSPRINTF in the DM365 EVM config.
Without this option enabled while performing NAND operations we will get
wrong diagnostic messages.
Example if the MTD NAND driver find a bad block while erasing from
a certain address, it will say bad block skipped at 0x00000000.
Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
-rw-r--r-- | include/configs/davinci_dm365evm.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/configs/davinci_dm365evm.h b/include/configs/davinci_dm365evm.h index 2797f827e9e..f715da32765 100644 --- a/include/configs/davinci_dm365evm.h +++ b/include/configs/davinci_dm365evm.h @@ -76,6 +76,7 @@ #define CONFIG_SYS_NAND_USE_FLASH_BBT #define CONFIG_SYS_NAND_4BIT_HW_ECC_OOBFIRST #define CONFIG_SYS_NAND_PAGE_2K +#define CONFIG_SYS_64BIT_VSPRINTF /* needed for nand_util.c */ #define CONFIG_SYS_NAND_LARGEPAGE #define CONFIG_SYS_NAND_BASE_LIST { 0x02000000, } |