From: Lukasz Majewski Date: Fri, 20 Nov 2015 07:06:13 +0000 (+0100) Subject: gpt: command: Remove duplicated check for empty partition description X-Git-Tag: v2016.01-rc2~131 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=5af9dd3739566767f8a64d879e01b2a916aa93f8;p=oweals%2Fu-boot.git gpt: command: Remove duplicated check for empty partition description Exactly the same check is performed in set_gpt_info() function executed just after this check. Signed-off-by: Lukasz Majewski Reviewed-by: Tom Rini --- diff --git a/common/cmd_gpt.c b/common/cmd_gpt.c index e3c0297a1c..6bea2c7c3a 100644 --- a/common/cmd_gpt.c +++ b/common/cmd_gpt.c @@ -293,9 +293,6 @@ static int gpt_default(block_dev_desc_t *blk_dev_desc, const char *str_part) u8 part_count = 0; disk_partition_t *partitions = NULL; - if (!str_part) - return -1; - /* fill partitions */ ret = set_gpt_info(blk_dev_desc, str_part, &str_disk_guid, &partitions, &part_count);