Skip to content
Snippets Groups Projects
Commit 2eb99ca8 authored by Wolfgang Denk's avatar Wolfgang Denk
Browse files

NAND: Part 2: Fix warning Please define CONFIG_SYS_64BIT_VSPRINTF...


Commit 8d2effea added a warning for configurations that use NAND
without defining the (then necessary) CONFIG_SYS_64BIT_VSPRINTF but
failed to fix the affected boards.

This patch covers the non-PPC boards that were missed in the previous
patch (commit 170c1972).

Signed-off-by: default avatarWolfgang Denk <wd@denx.de>
parent 7024aa14
No related branches found
No related tags found
No related merge requests found
...@@ -236,6 +236,8 @@ ...@@ -236,6 +236,8 @@
#define CONFIG_SYS_NAND_ENABLE_PIN AT91_PIN_PC14 #define CONFIG_SYS_NAND_ENABLE_PIN AT91_PIN_PC14
#define CONFIG_SYS_NAND_READY_PIN AT91_PIN_PA16 #define CONFIG_SYS_NAND_READY_PIN AT91_PIN_PA16
#define CONFIG_SYS_64BIT_VSPRINTF /* needed for nand_util.c */
/* NOR flash */ /* NOR flash */
#define CONFIG_SYS_FLASH_CFI 1 #define CONFIG_SYS_FLASH_CFI 1
......
...@@ -258,6 +258,8 @@ ...@@ -258,6 +258,8 @@
#define CONFIG_SYS_NAND_MASK_CLE (1 << 22) #define CONFIG_SYS_NAND_MASK_CLE (1 << 22)
#define CONFIG_SYS_NAND_ENABLE_PIN AT91_PIN_PD15 #define CONFIG_SYS_NAND_ENABLE_PIN AT91_PIN_PD15
#define CONFIG_SYS_NAND_READY_PIN AT91_PIN_PB30 #define CONFIG_SYS_NAND_READY_PIN AT91_PIN_PB30
#define CONFIG_SYS_64BIT_VSPRINTF /* needed for nand_util.c */
#endif #endif
#define CONFIG_CMD_JFFS2 1 #define CONFIG_CMD_JFFS2 1
......
...@@ -269,6 +269,8 @@ ...@@ -269,6 +269,8 @@
48, 49, 50, 51, 52, 53, 54, 55, \ 48, 49, 50, 51, 52, 53, 54, 55, \
56, 57, 58, 59, 60, 61, 62, 63} 56, 57, 58, 59, 60, 61, 62, 63}
#define CONFIG_SYS_64BIT_VSPRINTF /* needed for nand_util.c */
/* Boot configuration (define only one of next 3) */ /* Boot configuration (define only one of next 3) */
#define CONFIG_BOOT_NAND #define CONFIG_BOOT_NAND
/* None of these are currently implemented. Left from the original Samsung /* None of these are currently implemented. Left from the original Samsung
......
...@@ -206,6 +206,8 @@ ...@@ -206,6 +206,8 @@
#define CONFIG_SYS_NAND_SENDCMD_RETRY 3 #define CONFIG_SYS_NAND_SENDCMD_RETRY 3
#undef NAND_ALLOW_ERASE_ALL /* Allow erasing bad blocks - don't use */ #undef NAND_ALLOW_ERASE_ALL /* Allow erasing bad blocks - don't use */
#define CONFIG_SYS_64BIT_VSPRINTF /* needed for nand_util.c */
/* NAND Timing Parameters (in ns) */ /* NAND Timing Parameters (in ns) */
#define NAND_TIMING_tCH 10 #define NAND_TIMING_tCH 10
#define NAND_TIMING_tCS 0 #define NAND_TIMING_tCS 0
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment