Dear Marek Vasut, In message <[email protected]> you wrote: > Signed-off-by: Marek Vasut <[email protected]> > Cc: Wolfgang Denk <[email protected]> > --- > fs/ext2/dev.c | 74 > +++++++++++++++++++++++++++------------------------------ > 1 file changed, 35 insertions(+), 39 deletions(-) > > diff --git a/fs/ext2/dev.c b/fs/ext2/dev.c > index 315ff53..f8cb8b7 100644 > --- a/fs/ext2/dev.c > +++ b/fs/ext2/dev.c > @@ -35,6 +35,7 @@ static disk_partition_t part_info; > int ext2fs_set_blk_dev(block_dev_desc_t *rbdd, int part) > { > ext2fs_block_dev_desc = rbdd; > + int ret; > > if (part == 0) { > /* disk doesn't use partition table */ > @@ -42,60 +43,53 @@ int ext2fs_set_blk_dev(block_dev_desc_t *rbdd, int part) > part_info.size = rbdd->lba; > part_info.blksz = rbdd->blksz; > } else { > - if (get_partition_info > - (ext2fs_block_dev_desc, part, &part_info)) { > + ret = get_partition_info(ext2fs_block_dev_desc, part, > + &part_info); > + if (ret)
Actually this is definitely more than just an "indent" cleanup. Please fix the Subject:. Best regards, Wolfgang Denk -- DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: [email protected] It is not best to swap horses while crossing the river. - Abraham Lincoln _______________________________________________ U-Boot mailing list [email protected] http://lists.denx.de/mailman/listinfo/u-boot

