diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2017-09-02 10:53:11 +0900 |
---|---|---|
committer | Marek Vasut <marex@denx.de> | 2017-09-23 15:13:20 +0200 |
commit | 2aca29557d54dbce6b563eed62f2188640cef29e (patch) | |
tree | badff156184350452c57a19b150f9e141101c3e3 /include | |
parent | 91ebf300934461e450f5ef8f386ea9e55d2636c5 (diff) | |
download | u-boot-2aca29557d54dbce6b563eed62f2188640cef29e.zip u-boot-2aca29557d54dbce6b563eed62f2188640cef29e.tar.gz u-boot-2aca29557d54dbce6b563eed62f2188640cef29e.tar.bz2 |
ARM: socfpga: remove unneeded NAND config options
CONFIG_NAND_DENALI select's CONFIG_SYS_NAND_SELF_INIT, so the
NAND initialization process is driven by the driver itself.
CONFIG_SYS_NAND_MAX_CHIPS and CONFIG_SYS_NAND_BASE are unused.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/socfpga_common.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/configs/socfpga_common.h b/include/configs/socfpga_common.h index 9897e11..7b5417a 100644 --- a/include/configs/socfpga_common.h +++ b/include/configs/socfpga_common.h @@ -142,12 +142,10 @@ */ #ifdef CONFIG_NAND_DENALI #define CONFIG_SYS_MAX_NAND_DEVICE 1 -#define CONFIG_SYS_NAND_MAX_CHIPS 1 #define CONFIG_SYS_NAND_ONFI_DETECTION #define CONFIG_NAND_DENALI_ECC_SIZE 512 #define CONFIG_SYS_NAND_REGS_BASE SOCFPGA_NANDREGS_ADDRESS #define CONFIG_SYS_NAND_DATA_BASE SOCFPGA_NANDDATA_ADDRESS -#define CONFIG_SYS_NAND_BASE (CONFIG_SYS_NAND_DATA_BASE + 0x10) #endif /* |