Re: [U-Boot] [PATCH] mtd: spi: Improve data write functionality

2019-04-12 Thread Vignesh Raghavendra
On 05/04/19 2:24 PM, Rajat Srivastava wrote: > Incorporate write enable and status check in the write data > function itself. > > Formerly, Write data function used to break the data to be > written into smaller chunks and used to send the smaller > chunks without write enable or status check for

Re: [U-Boot] [PATCH] mtd: spi: Improve data write functionality

2019-04-11 Thread Jagan Teki
On Fri, Apr 5, 2019 at 2:24 PM Rajat Srivastava wrote: > > Incorporate write enable and status check in the write data > function itself. > > Formerly, Write data function used to break the data to be > written into smaller chunks and used to send the smaller > chunks without write enable or statu

Re: [U-Boot] [PATCH] mtd: spi: Improve data write functionality

2019-04-11 Thread Ashish Kumar
> -Original Message- > From: Rajat Srivastava > Sent: Friday, April 5, 2019 2:24 PM > To: u-boot@lists.denx.de; vigne...@ti.com; tr...@konsulko.com; > marek.va...@gmail.com; marek.vasut+rene...@gmail.com; > ja...@openedev.com > Cc: Ashish Kumar ; Rajat Srivastava > > Subject: [PATCH] mtd

[U-Boot] [PATCH] mtd: spi: Improve data write functionality

2019-04-05 Thread Rajat Srivastava
Incorporate write enable and status check in the write data function itself. Formerly, Write data function used to break the data to be written into smaller chunks and used to send the smaller chunks without write enable or status check for every iteration. Signed-off-by: Rajat Srivastava --- Wh