]> git.ipfire.org Git - people/ms/u-boot.git/commitdiff
gpt: fix error reporting on partition table write failures
authorRob Herring <robh@kernel.org>
Mon, 26 Jan 2015 15:43:15 +0000 (09:43 -0600)
committerTom Rini <trini@konsulko.com>
Thu, 5 Mar 2015 16:17:53 +0000 (11:17 -0500)
The gpt command always reports success even if writing the partition table
failed. Propagate the return value of gpt_restore so we get proper status
reported.

Signed-off-by: Rob Herring <robh@kernel.org>
Reviewed-by: Przemyslaw Marczak <p.marczak@samsung.com>
common/cmd_gpt.c

index e38422d792eec2784102bccadea93b5b522c8666..75df3feca2f1b5437d5821a347d98bbc7f7fac65 100644 (file)
@@ -281,11 +281,11 @@ static int gpt_default(block_dev_desc_t *blk_dev_desc, const char *str_part)
        }
 
        /* save partitions layout to disk */
-       gpt_restore(blk_dev_desc, str_disk_guid, partitions, part_count);
+       ret = gpt_restore(blk_dev_desc, str_disk_guid, partitions, part_count);
        free(str_disk_guid);
        free(partitions);
 
-       return 0;
+       return ret;
 }
 
 /**