Re: [U-Boot] [PATCH v1 06/10] spl, nand, atmel_nand: add erase one block function

2014-10-02 Thread Scott Wood
On Thu, 2014-10-02 at 07:21 +0200, Heiko Schocher wrote: > Hello Scott, > > Am 02.10.2014 03:17, schrieb Scott Wood: > > On Wed, 2014-10-01 at 07:54 +0200, Heiko Schocher wrote: > >> diff --git a/include/linux/mtd/nand.h b/include/linux/mtd/nand.h > >> index 8438490..ee2c3fe 100644 > >> --- a/incl

Re: [U-Boot] [PATCH v1 06/10] spl, nand, atmel_nand: add erase one block function

2014-10-01 Thread Heiko Schocher
Hello Scott, Am 02.10.2014 03:17, schrieb Scott Wood: On Wed, 2014-10-01 at 07:54 +0200, Heiko Schocher wrote: diff --git a/include/linux/mtd/nand.h b/include/linux/mtd/nand.h index 8438490..ee2c3fe 100644 --- a/include/linux/mtd/nand.h +++ b/include/linux/mtd/nand.h @@ -1020,5 +1020,6 @@ void

Re: [U-Boot] [PATCH v1 06/10] spl, nand, atmel_nand: add erase one block function

2014-10-01 Thread Scott Wood
On Wed, 2014-10-01 at 07:54 +0200, Heiko Schocher wrote: > diff --git a/include/linux/mtd/nand.h b/include/linux/mtd/nand.h > index 8438490..ee2c3fe 100644 > --- a/include/linux/mtd/nand.h > +++ b/include/linux/mtd/nand.h > @@ -1020,5 +1020,6 @@ void nand_write_buf16(struct mtd_info *mtd, const >

[U-Boot] [PATCH v1 06/10] spl, nand, atmel_nand: add erase one block function

2014-09-30 Thread Heiko Schocher
erase one nand block in spl code. keep it simple, as size matters This is used on the upcoming taurus spl support. Signed-off-by: Heiko Schocher Cc: Andreas Bießmann Cc: Bo Shen Cc: Scott Wood Cc: Josh Wu --- drivers/mtd/nand/atmel_nand.c | 33 + include/linux