[U-Boot] [PATCH v2 1/5] gpt: command: Remove duplicated check for empty partition description

Lukasz Majewski l.majewski at majess.pl
Fri Nov 20 08:06:13 CET 2015


Exactly the same check is performed in set_gpt_info() function executed
just after this check.

Signed-off-by: Lukasz Majewski <l.majewski at majess.pl>
Reviewed-by: Tom Rini <trini at konsulko.com>

---
Changes for v2:
- None
---
 common/cmd_gpt.c | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/common/cmd_gpt.c b/common/cmd_gpt.c
index e3c0297..6bea2c7 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);
-- 
2.1.4



More information about the U-Boot mailing list