Re: [U-Boot] [PATCH v3 4/7] dfu: MMC specific routines for DFU operation

2012-08-02 Thread Lukasz Majewski
Dear Mike Frysinger, > On Tuesday 31 July 2012 02:37:00 Lukasz Majewski wrote: > > --- /dev/null > > +++ b/drivers/dfu/dfu_mmc.c > > > > +static int mmc_block_op(enum dfu_mmc_op op, struct dfu_entity *dfu, > > + void *buf, long *len) > > +{ > > + ALLOC_CACHE_ALIGN_BUFFER(char,

Re: [U-Boot] [PATCH v3 4/7] dfu: MMC specific routines for DFU operation

2012-08-01 Thread Mike Frysinger
On Tuesday 31 July 2012 02:37:00 Lukasz Majewski wrote: > --- /dev/null > +++ b/drivers/dfu/dfu_mmc.c > > +static int mmc_block_op(enum dfu_mmc_op op, struct dfu_entity *dfu, > + void *buf, long *len) > +{ > + ALLOC_CACHE_ALIGN_BUFFER(char, cmd_buf, DFU_CMD_BUF_SIZE); ugh,

[U-Boot] [PATCH v3 4/7] dfu: MMC specific routines for DFU operation

2012-07-30 Thread Lukasz Majewski
Support for MMC storage devices to work with DFU framework. Signed-off-by: Lukasz Majewski Signed-off-by: Kyungmin Park Cc: Marek Vasut --- Changes for v2: - None Changes for v3: - Provide special abstraction layer (mmc_{block|file}_{read|write}) to alleviate switch to new device model (DM)