Re: [U-Boot] [PATCH 4/6] S5PC100: onenand driver for SMDKC100 support

2009-06-29 Thread Scott Wood
On Sat, Jun 27, 2009 at 04:32:35PM +0900, Kyungmin Park wrote: +/** + * onenand_read_burst + * + * 16 Burst read: performance is improved up to 40%. + */ +static void onenand_read_burst(void *dest, const void *src, size_t len) +{ +     int count; + +     if (len % 16 != 0) +  

Re: [U-Boot] [PATCH 4/6] S5PC100: onenand driver for SMDKC100 support

2009-06-27 Thread Kyungmin Park
Hi, On Sat, Jun 27, 2009 at 2:54 AM, Scott Woodscottw...@freescale.com wrote: On Thu, Jun 25, 2009 at 05:10:37PM +0900, HeungJun Kim wrote: This patch includes the onenand driver for SMDKC100 Board. Signed-off-by: HeungJun, Kim riverful@samsung.com ---  drivers/mtd/onenand/Makefile    

Re: [U-Boot] [PATCH 4/6] S5PC100: onenand driver for SMDKC100 support

2009-06-26 Thread Scott Wood
On Thu, Jun 25, 2009 at 05:10:37PM +0900, HeungJun Kim wrote: This patch includes the onenand driver for SMDKC100 Board. Signed-off-by: HeungJun, Kim riverful@samsung.com --- drivers/mtd/onenand/Makefile |8 +- drivers/mtd/onenand/s5p_onenand.c | 2034