diff options
| author | Ćukasz Majewski <l.majewski@samsung.com> | 2013-04-04 04:32:57 +0000 | 
|---|---|---|
| committer | Tom Rini <trini@ti.com> | 2013-04-08 12:00:51 -0400 | 
| commit | 664277203c028d2e8fede5a3c30658fb75e6adef (patch) | |
| tree | dea49882b3c560db1d1784478ca06816961dc1b6 /drivers/dfu/dfu_mmc.c | |
| parent | cd0f4fa1ca2901312ae78bc27d4edc8286fcbf1d (diff) | |
| download | olio-uboot-2014.01-664277203c028d2e8fede5a3c30658fb75e6adef.tar.xz olio-uboot-2014.01-664277203c028d2e8fede5a3c30658fb75e6adef.zip | |
dfu:ext4:fix: Change ext4write command order of parameters
Following commit:
"cmd_ext4: BREAK and correct ext4write parameter order"
SHA1:0171d52c410cbaa9290b1b214e695697c835bfe5
introduced cleanup of ext4write semantics to be consistent with other
filesystem's writing commands (e.g. fatwrite).
This commit provides correct ext4write command generation at DFU eMMC
code.
Signed-off-by: Lukasz Majewski <l.majewski@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Diffstat (limited to 'drivers/dfu/dfu_mmc.c')
| -rw-r--r-- | drivers/dfu/dfu_mmc.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/drivers/dfu/dfu_mmc.c b/drivers/dfu/dfu_mmc.c index 083d74591..afd350652 100644 --- a/drivers/dfu/dfu_mmc.c +++ b/drivers/dfu/dfu_mmc.c @@ -72,10 +72,10 @@ static int mmc_file_op(enum dfu_mmc_op op, struct dfu_entity *dfu,  			(unsigned int) buf, dfu->name, *len);  		break;  	case DFU_FS_EXT4: -		sprintf(cmd_buf, "ext4%s mmc %d:%d /%s 0x%x %ld", +		sprintf(cmd_buf, "ext4%s mmc %d:%d 0x%x /%s %ld",  			op == DFU_OP_READ ? "load" : "write",  			dfu->data.mmc.dev, dfu->data.mmc.part, -			dfu->name, (unsigned int) buf, *len); +			(unsigned int) buf, dfu->name, *len);  		break;  	default:  		printf("%s: Layout (%s) not (yet) supported!\n", __func__, |