[U-Boot] [PATCH 1/2] drivers:dfu: dfu_flush(): add raw data flush to complete dfu write

2014-05-12 Thread Przemyslaw Marczak
Before dfu write and flush operations separation, dfu write data was flushed by host download request with len of zero size. Since above change manually calling dfu write with zero size has non sense (e.g. in THOR). This should be done by flush operation. So now dfu_write_buffer_drain() is called

Re: [U-Boot] [PATCH 1/2] drivers:dfu: dfu_flush(): add raw data flush to complete dfu write

2014-05-14 Thread Marek Vasut
On Monday, May 12, 2014 at 12:05:33 PM, Przemyslaw Marczak wrote: > Before dfu write and flush operations separation, > dfu write data was flushed by host download request > with len of zero size. > > Since above change manually calling dfu write with zero > size has non sense (e.g. in THOR). This