]> Git Repo - J-u-boot.git/commitdiff
nand_spl_simple: Drop CONFIG_SYS_NAND_4_ADDR_CYCLE support
authorTom Rini <[email protected]>
Wed, 22 Sep 2021 18:50:31 +0000 (14:50 -0400)
committerTom Rini <[email protected]>
Wed, 6 Oct 2021 13:16:23 +0000 (09:16 -0400)
This code is unused, drop it.

Signed-off-by: Tom Rini <[email protected]>
drivers/mtd/nand/raw/nand_spl_simple.c

index 09e053541a9d48ed484a1a64681dd869138ced9d..ede7dbf15b9032f797c90b0f555cb331573de9c8 100644 (file)
@@ -39,11 +39,6 @@ static int nand_command(int block, int page, uint32_t offs,
        this->cmd_ctrl(mtd, page_addr & 0xff, NAND_CTRL_ALE); /* A[16:9] */
        this->cmd_ctrl(mtd, (page_addr >> 8) & 0xff,
                       NAND_CTRL_ALE); /* A[24:17] */
-#ifdef CONFIG_SYS_NAND_4_ADDR_CYCLE
-       /* One more address cycle for devices > 32MiB */
-       this->cmd_ctrl(mtd, (page_addr >> 16) & 0x0f,
-                      NAND_CTRL_ALE); /* A[28:25] */
-#endif
        /* Latch in address */
        this->cmd_ctrl(mtd, NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
 
This page took 0.036491 seconds and 4 git commands to generate.