[U-Boot] [PATCH v3 2/8] cmd_mmc.c: Change 'bootpart' code to match normal coding style
Pantelis Antoniou
pantelis.antoniou at gmail.com
Fri Feb 7 17:00:06 CET 2014
Hi Tom,
On Feb 5, 2014, at 5:24 PM, Tom Rini wrote:
> Acked-by: Jaehoon Chung <jh80.chung at samsung.com>
> Signed-off-by: Tom Rini <trini at ti.com>
> ---
> common/cmd_mmc.c | 15 +++++++++++----
> 1 file changed, 11 insertions(+), 4 deletions(-)
>
> diff --git a/common/cmd_mmc.c b/common/cmd_mmc.c
> index da5fef9..e118252 100644
> --- a/common/cmd_mmc.c
> +++ b/common/cmd_mmc.c
> @@ -314,11 +314,18 @@ static int do_mmcops(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
>
> } else if (strcmp(argv[1], "bootpart") == 0) {
> int dev;
> - dev = simple_strtoul(argv[2], NULL, 10);
> + struct *mmc;
> + u32 bootsize, rpmbsize;
>
> - u32 bootsize = simple_strtoul(argv[3], NULL, 10);
> - u32 rpmbsize = simple_strtoul(argv[4], NULL, 10);
> - struct mmc *mmc = find_mmc_device(dev);
> + if (argc == 5) {
> + dev = simple_strtoul(argv[2], NULL, 10);
> + bootsize = simple_strtoul(argv[3], NULL, 10);
> + rpmbsize = simple_strtoul(argv[4], NULL, 10);
> + } else {
> + return CMD_RET_USAGE;
> + }
> +
> + mmc = find_mmc_device(dev);
> if (!mmc) {
> printf("no mmc device at slot %x\n", dev);
> return 1;
> --
> 1.7.9.5
Applied. Thanks.
Signed-off-by: Pantelis Antoniou <panto at antoniou-consulting.com>
More information about the U-Boot
mailing list