Re: [U-Boot] [PATCH] NAND boot: fix nand_load overlap issue

2009-08-04 Thread Scott Wood
On Sun, Jul 19, 2009 at 01:23:43AM +0200, Wolfgang Denk wrote: > Dear Scott, > > In message <1244170414-4840-1-git-send-email-mingkai...@freescale.com> > Mingkai Hu wrote: > > The code copy data from NAND flash block by block, so when > > the data length isn't a whole-number multiple of the block

Re: [U-Boot] [PATCH] NAND boot: fix nand_load overlap issue

2009-07-18 Thread Wolfgang Denk
Dear Scott, In message <1244170414-4840-1-git-send-email-mingkai...@freescale.com> Mingkai Hu wrote: > The code copy data from NAND flash block by block, so when > the data length isn't a whole-number multiple of the block > size, it will overlap the rest space. > > Signed-off-by: Mingkai Hu >

[U-Boot] [PATCH] NAND boot: fix nand_load overlap issue

2009-06-04 Thread Mingkai Hu
The code copy data from NAND flash block by block, so when the data length isn't a whole-number multiple of the block size, it will overlap the rest space. Signed-off-by: Mingkai Hu --- nand_spl/nand_boot_fsl_elbc.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/nand_s