From: Otavio Salvador Date: Thu, 3 Oct 2013 11:04:38 +0000 (-0300) Subject: mtd: Fix function description in part_validate comment X-Git-Tag: v2013.10~44 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f501991dcaa5ab633973b2887451daee5e70c6c8;p=kernel%2Fu-boot.git mtd: Fix function description in part_validate comment The part_validate comment had a wrong description of the actions it does and referenced to non-existent functions while in fact it calls 'part_validate_eraseblock()'. Signed-off-by: Otavio Salvador --- diff --git a/common/cmd_mtdparts.c b/common/cmd_mtdparts.c index 38a6e6d..f791372 100644 --- a/common/cmd_mtdparts.c +++ b/common/cmd_mtdparts.c @@ -381,10 +381,9 @@ static int part_validate_eraseblock(struct mtdids *id, struct part_info *part) /** - * Performs sanity check for supplied partition. Offset and size are verified - * to be within valid range. Partition type is checked and either - * parts_validate_nor() or parts_validate_nand() is called with the argument - * of part. + * Performs sanity check for supplied partition. Offset and size are + * verified to be within valid range. Partition type is checked and + * part_validate_eraseblock() is called with the argument of part. * * @param id of the parent device * @param part partition to validate