diff mbox

[U-Boot] ppc4xx/NAND: Reduce size of NAND SPL image

Message ID 1290519168-6683-1-git-send-email-sr@denx.de
State Accepted
Commit c5d02825aeb39a74e4faf789bf94a8610c9a1d0f
Headers show

Commit Message

Stefan Roese Nov. 23, 2010, 1:32 p.m. UTC
This is needed for the canyonlands_nand build target. Without it
the resulting image won't fit into 4k.

Signed-off-by: Stefan Roese <sr@denx.de>
Cc: Scott Wood <scottwood@freescale.com>
---
Scott, I would like to push this patch via my repository.
Please let me know if this is ok with you.

Thanks.

 drivers/mtd/nand/ndfc.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

Comments

Scott Wood Nov. 23, 2010, 4:35 p.m. UTC | #1
On Tue, 23 Nov 2010 14:32:48 +0100
Stefan Roese <sr@denx.de> wrote:

> This is needed for the canyonlands_nand build target. Without it
> the resulting image won't fit into 4k.
> 
> Signed-off-by: Stefan Roese <sr@denx.de>
> Cc: Scott Wood <scottwood@freescale.com>
> ---
> Scott, I would like to push this patch via my repository.
> Please let me know if this is ok with you.

Acked-by: Scott Wood <scottwood@freescale.com>

-Scott
diff mbox

Patch

diff --git a/drivers/mtd/nand/ndfc.c b/drivers/mtd/nand/ndfc.c
index 3ca13a9..0729e0c 100644
--- a/drivers/mtd/nand/ndfc.c
+++ b/drivers/mtd/nand/ndfc.c
@@ -201,6 +201,8 @@  int board_nand_init(struct nand_chip *nand)
 #ifndef CONFIG_NAND_SPL
 	nand->write_buf  = ndfc_write_buf;
 	nand->verify_buf = ndfc_verify_buf;
+
+	chip++;
 #else
 	/*
 	 * Setup EBC (CS0 only right now)
@@ -211,7 +213,5 @@  int board_nand_init(struct nand_chip *nand)
 	mtebc(PB0AP, CONFIG_SYS_EBC_PB0AP);
 #endif
 
-	chip++;
-
 	return 0;
 }