Re: [U-Boot] [PATCH v2] dfu:mmc: raw data write fix

2013-09-05 Thread Tom Rini
On Wed, Aug 21, 2013 at 01:00:01PM +0200, Mateusz Zalega wrote: When user attempted to perform a raw write using DFU (vide dfu_fill_entity_mmc) with MMC interface not initialized before, get_mmc_blk_size() reported invalid (zero) block size - it wasn't possible to write ie. a new u-boot

[U-Boot] [PATCH v2] dfu:mmc: raw data write fix

2013-08-21 Thread Mateusz Zalega
When user attempted to perform a raw write using DFU (vide dfu_fill_entity_mmc) with MMC interface not initialized before, get_mmc_blk_size() reported invalid (zero) block size - it wasn't possible to write ie. a new u-boot image. This commit fixes that by initializing device in

Re: [U-Boot] [PATCH v2] dfu:mmc: raw data write fix

2013-08-21 Thread Mateusz Zalega
On 08/21/13 13:00, Mateusz Zalega wrote: When user attempted to perform a raw write using DFU (vide dfu_fill_entity_mmc) with MMC interface not initialized before, get_mmc_blk_size() reported invalid (zero) block size - it wasn't possible to write ie. a new u-boot image. This commit fixes